Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Form 59 checkbox #174

Merged
merged 19 commits into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14-alpine
FROM node:20-alpine
WORKDIR /app
COPY package.json .
COPY package-lock.json .
Expand Down
4 changes: 4 additions & 0 deletions builderview/add_checkbox_button.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.control-group
.control-label Add Checkbox
.controls
button(class='btn btn-primary' value='add_checkbox_button') +
2 changes: 1 addition & 1 deletion builderview/generic_text_input.jade
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.control-group
.control-label #{label}
.controls
input(type='text', name='radio_text')
input(type='text')

2 changes: 2 additions & 0 deletions docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ You can run with `docker-compose up -d` in a detached mode. Then you can run `do

## rebulid without cache

When the `Dockerfile` is updated, e.g., using a new node.js version, run the following command to rebuild the image.

```
docker-compose build --no-cache
```
Expand Down
5 changes: 5 additions & 0 deletions inputview/checkbox_in_set.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.control-group.output-control-group
.controls
label.checkbox
input(type='checkbox', disabled=true, rv-data-userkey='model.userkey')
span { model.checkbox_text }
8 changes: 8 additions & 0 deletions inputview/checkbox_set.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.control-group.checkbox-set
.control-label
span.control-number
!= ' '
span.model-label { model.label }
.controls
.checkbox-set-controls
span.help-block { model.help }
4 changes: 4 additions & 0 deletions inputview/checkbox_set_button.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.checkbox-set-buttons
.btn-group
a.btn.btn-info(data-toggle='tooltip', title='edit the checkbox') Edit
a.btn.btn-warning(data-toggle='tooltip', title='remove the checkbox') Remove
Loading