mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
template(name="cardActions")
|
|
div.trigger-item
|
|
div.trigger-content
|
|
div.trigger-dropdown
|
|
select(id="label-action")
|
|
option(value="add") {{{_'r-add'}}}
|
|
option(value="remove") {{{_'r-remove'}}}
|
|
div.trigger-text
|
|
| {{{_'r-label'}}}
|
|
div.trigger-dropdown
|
|
select(id="label-id")
|
|
each labels
|
|
option(value="#{_id}")
|
|
= name
|
|
div.trigger-button.js-add-label-action.js-goto-rules
|
|
i.fa.fa-plus
|
|
|
|
div.trigger-item
|
|
div.trigger-content
|
|
div.trigger-dropdown
|
|
select(id="member-action")
|
|
option(value="add") {{{_'r-add'}}}
|
|
option(value="remove") {{{_'r-remove'}}}
|
|
div.trigger-text
|
|
| {{{_'r-member'}}}
|
|
div.trigger-dropdown
|
|
input(id="member-name",type=text,placeholder="{{{_'r-name'}}}")
|
|
div.trigger-button.js-add-member-action.js-goto-rules
|
|
i.fa.fa-plus
|
|
|
|
div.trigger-item
|
|
div.trigger-content
|
|
div.trigger-text
|
|
| {{{_'r-remove-all'}}}
|
|
div.trigger-button.js-add-removeall-action.js-goto-rules
|
|
i.fa.fa-plus
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|