2015-12-08 16:05:59 -05:00
|
|
|
template(name="boardHeaderBar")
|
2015-06-07 10:30:27 +02:00
|
|
|
h1.header-board-menu
|
2015-08-29 15:40:06 +02:00
|
|
|
with currentBoard
|
2021-03-03 16:39:34 +02:00
|
|
|
+viewer
|
|
|
|
= title
|
2015-05-27 17:17:00 +02:00
|
|
|
|
|
|
|
.board-header-btns.left
|
2015-12-17 20:38:33 +08:00
|
|
|
unless isMiniScreen
|
2019-02-27 16:14:14 +02:00
|
|
|
if currentBoard
|
|
|
|
if currentUser
|
2021-03-03 16:39:34 +02:00
|
|
|
with currentBoard
|
|
|
|
a.board-header-btn(class="{{#if currentUser.isBoardAdmin}}js-edit-board-title{{else}}is-disabled{{/if}}" title="{{_ 'edit'}}" value=title)
|
|
|
|
i.fa.fa-pencil-square-o
|
|
|
|
|
2019-02-27 16:14:14 +02:00
|
|
|
a.board-header-btn.js-star-board(class="{{#if isStarred}}is-active{{/if}}"
|
|
|
|
title="{{#if isStarred}}{{_ 'click-to-unstar'}}{{else}}{{_ 'click-to-star'}}{{/if}} {{_ 'starred-boards-description'}}")
|
|
|
|
i.fa(class="fa-star{{#unless isStarred}}-o{{/unless}}")
|
|
|
|
if showStarCounter
|
|
|
|
span
|
|
|
|
= currentBoard.stars
|
|
|
|
|
|
|
|
a.board-header-btn(
|
|
|
|
class="{{#if currentUser.isBoardAdmin}}js-change-visibility{{else}}is-disabled{{/if}}"
|
|
|
|
title="{{_ currentBoard.permission}}")
|
|
|
|
i.fa(class="{{#if currentBoard.isPublic}}fa-globe{{else}}fa-lock{{/if}}")
|
|
|
|
span {{_ currentBoard.permission}}
|
|
|
|
|
|
|
|
a.board-header-btn.js-watch-board(
|
|
|
|
title="{{_ watchLevel }}")
|
|
|
|
if $eq watchLevel "watching"
|
|
|
|
i.fa.fa-eye
|
|
|
|
if $eq watchLevel "tracking"
|
|
|
|
i.fa.fa-bell
|
|
|
|
if $eq watchLevel "muted"
|
|
|
|
i.fa.fa-bell-slash
|
|
|
|
span {{_ watchLevel}}
|
2021-02-24 16:45:16 +02:00
|
|
|
a.board-header-btn.js-sort-cards(title="{{_ 'sort-cards'}}")
|
2021-02-19 08:42:09 +08:00
|
|
|
i.fa.fa-sort
|
2021-02-24 16:45:16 +02:00
|
|
|
| {{_ 'sort-cards'}} {{sortCardsBy.get}}
|
2019-02-27 16:14:14 +02:00
|
|
|
|
|
|
|
else
|
|
|
|
a.board-header-btn.js-log-in(
|
|
|
|
title="{{_ 'log-in'}}")
|
|
|
|
i.fa.fa-sign-in
|
|
|
|
span {{_ 'log-in'}}
|
2016-04-18 20:26:10 +02:00
|
|
|
|
2015-12-17 14:23:35 +08:00
|
|
|
.board-header-btns.right
|
2016-04-13 16:39:13 +02:00
|
|
|
if currentBoard
|
|
|
|
if isMiniScreen
|
2019-02-27 16:14:14 +02:00
|
|
|
if currentUser
|
2021-03-03 16:39:34 +02:00
|
|
|
with currentBoard
|
|
|
|
a.board-header-btn(class="{{#if currentUser.isBoardAdmin}}js-edit-board-title{{else}}is-disabled{{/if}}" title="{{_ 'edit'}}" value=title)
|
|
|
|
i.fa.fa-pencil-square-o
|
|
|
|
|
2019-02-27 16:14:14 +02:00
|
|
|
a.board-header-btn.js-star-board(class="{{#if isStarred}}is-active{{/if}}"
|
|
|
|
title="{{#if isStarred}}{{_ 'click-to-unstar'}}{{else}}{{_ 'click-to-star'}}{{/if}} {{_ 'starred-boards-description'}}")
|
|
|
|
i.fa(class="fa-star{{#unless isStarred}}-o{{/unless}}")
|
|
|
|
if showStarCounter
|
|
|
|
span
|
|
|
|
= currentBoard.stars
|
|
|
|
|
|
|
|
a.board-header-btn(
|
|
|
|
class="{{#if currentUser.isBoardAdmin}}js-change-visibility{{else}}is-disabled{{/if}}"
|
|
|
|
title="{{_ currentBoard.permission}}")
|
|
|
|
i.fa(class="{{#if currentBoard.isPublic}}fa-globe{{else}}fa-lock{{/if}}")
|
|
|
|
span {{_ currentBoard.permission}}
|
|
|
|
|
|
|
|
a.board-header-btn.js-watch-board(
|
|
|
|
title="{{_ watchLevel }}")
|
|
|
|
if $eq watchLevel "watching"
|
|
|
|
i.fa.fa-eye
|
|
|
|
if $eq watchLevel "tracking"
|
|
|
|
i.fa.fa-bell
|
|
|
|
if $eq watchLevel "muted"
|
|
|
|
i.fa.fa-bell-slash
|
|
|
|
span {{_ watchLevel}}
|
|
|
|
|
|
|
|
else
|
|
|
|
a.board-header-btn.js-log-in(
|
|
|
|
title="{{_ 'log-in'}}")
|
|
|
|
i.fa.fa-sign-in
|
|
|
|
span {{_ 'log-in'}}
|
2018-04-06 00:11:15 +03:00
|
|
|
|
2017-07-25 00:30:30 +01:00
|
|
|
if isSandstorm
|
|
|
|
if currentUser
|
|
|
|
a.board-header-btn.js-open-archived-board
|
|
|
|
i.fa.fa-archive
|
|
|
|
span {{_ 'archives'}}
|
2016-01-05 23:26:02 +08:00
|
|
|
|
New feature: Now there is popup selection of Lists/Swimlanes/Calendar/Roles.
New feature, not set visible yet, because switching to it does not
work properly yet: Collapsible Swimlanes #2804
Fix: Public board now loads correctly. When you select one of Lists/Swimlanes/Calendar view and
reload webbrowser page, it can change view. Closes #2311
Fix: List sorting commented out. Closes #2800
Fix: Errors hasHiddenMinicardText, hasShowDragHandles, showSort, hasSortBy, profile,
FirefoxAndroid/IE11/Vivaldi/Chromium browsers not working by using
cookies instead of database.
More details at https://github.com/wekan/wekan/issues/2643#issuecomment-554907955
Note: Cookie changes are not always immediate, if there is no effect,
you may need to reload webbrowser page.
Closes #2643 .
Thanks to xet7 !
2019-11-18 22:23:49 +02:00
|
|
|
//if showSort
|
|
|
|
// a.board-header-btn.js-open-sort-view(title="{{_ 'sort-desc'}}")
|
|
|
|
// i.fa(class="{{directionClass}}")
|
|
|
|
// span {{_ 'sort'}}{{_ listSortShortDesc}}
|
|
|
|
|
2016-04-13 16:39:13 +02:00
|
|
|
a.board-header-btn.js-open-filter-view(
|
|
|
|
title="{{#if Filter.isActive}}{{_ 'filter-on-desc'}}{{else}}{{_ 'filter'}}{{/if}}"
|
|
|
|
class="{{#if Filter.isActive}}emphasis{{/if}}")
|
|
|
|
i.fa.fa-filter
|
|
|
|
span {{#if Filter.isActive}}{{_ 'filter-on'}}{{else}}{{_ 'filter'}}{{/if}}
|
|
|
|
if Filter.isActive
|
|
|
|
a.board-header-btn-close.js-filter-reset(title="{{_ 'filter-clear'}}")
|
|
|
|
i.fa.fa-times-thin
|
2018-08-03 19:47:20 +02:00
|
|
|
|
2018-02-23 01:10:21 +01:00
|
|
|
a.board-header-btn.js-open-search-view(title="{{_ 'search'}}")
|
|
|
|
i.fa.fa-search
|
|
|
|
span {{_ 'search'}}
|
|
|
|
|
2019-02-22 23:48:23 +01:00
|
|
|
unless currentBoard.isTemplatesBoard
|
|
|
|
a.board-header-btn.js-toggle-board-view(
|
|
|
|
title="{{_ 'board-view'}}")
|
New feature: Now there is popup selection of Lists/Swimlanes/Calendar/Roles.
New feature, not set visible yet, because switching to it does not
work properly yet: Collapsible Swimlanes #2804
Fix: Public board now loads correctly. When you select one of Lists/Swimlanes/Calendar view and
reload webbrowser page, it can change view. Closes #2311
Fix: List sorting commented out. Closes #2800
Fix: Errors hasHiddenMinicardText, hasShowDragHandles, showSort, hasSortBy, profile,
FirefoxAndroid/IE11/Vivaldi/Chromium browsers not working by using
cookies instead of database.
More details at https://github.com/wekan/wekan/issues/2643#issuecomment-554907955
Note: Cookie changes are not always immediate, if there is no effect,
you may need to reload webbrowser page.
Closes #2643 .
Thanks to xet7 !
2019-11-18 22:23:49 +02:00
|
|
|
i.fa.fa-caret-down
|
|
|
|
if $eq boardView 'board-view-swimlanes'
|
|
|
|
i.fa.fa-th-large
|
2020-06-08 19:12:17 +03:00
|
|
|
if $eq boardView 'board-view-lists'
|
|
|
|
i.fa.fa-trello
|
New feature: Now there is popup selection of Lists/Swimlanes/Calendar/Roles.
New feature, not set visible yet, because switching to it does not
work properly yet: Collapsible Swimlanes #2804
Fix: Public board now loads correctly. When you select one of Lists/Swimlanes/Calendar view and
reload webbrowser page, it can change view. Closes #2311
Fix: List sorting commented out. Closes #2800
Fix: Errors hasHiddenMinicardText, hasShowDragHandles, showSort, hasSortBy, profile,
FirefoxAndroid/IE11/Vivaldi/Chromium browsers not working by using
cookies instead of database.
More details at https://github.com/wekan/wekan/issues/2643#issuecomment-554907955
Note: Cookie changes are not always immediate, if there is no effect,
you may need to reload webbrowser page.
Closes #2643 .
Thanks to xet7 !
2019-11-18 22:23:49 +02:00
|
|
|
if $eq boardView 'board-view-cal'
|
|
|
|
i.fa.fa-calendar
|
2020-06-08 17:28:53 +03:00
|
|
|
span {{#if boardView}}{{_ boardView}}{{else}}{{_ 'board-view-swimlanes'}}{{/if}}
|
2018-01-22 16:54:19 -03:00
|
|
|
|
2017-03-18 18:49:39 -04:00
|
|
|
if canModifyBoard
|
2016-04-13 16:39:13 +02:00
|
|
|
a.board-header-btn.js-multiselection-activate(
|
|
|
|
title="{{#if MultiSelection.isActive}}{{_ 'multi-selection-on'}}{{else}}{{_ 'multi-selection'}}{{/if}}"
|
|
|
|
class="{{#if MultiSelection.isActive}}emphasis{{/if}}")
|
|
|
|
i.fa.fa-check-square-o
|
|
|
|
span {{#if MultiSelection.isActive}}{{_ 'multi-selection-on'}}{{else}}{{_ 'multi-selection'}}{{/if}}
|
|
|
|
if MultiSelection.isActive
|
|
|
|
a.board-header-btn-close.js-multiselection-reset(title="{{_ 'filter-clear'}}")
|
2016-07-11 12:03:22 +02:00
|
|
|
i.fa.fa-times-thin
|
2015-05-29 23:35:30 +02:00
|
|
|
|
2016-04-13 16:39:13 +02:00
|
|
|
.separator
|
2019-03-03 22:27:05 +02:00
|
|
|
a.board-header-btn.js-toggle-sidebar
|
|
|
|
i.fa.fa-navicon
|
2015-05-27 17:17:00 +02:00
|
|
|
|
|
|
|
template(name="boardVisibilityList")
|
|
|
|
ul.pop-over-list
|
|
|
|
li
|
|
|
|
with "private"
|
|
|
|
a.js-select-visibility
|
|
|
|
i.fa.fa-lock.colorful
|
|
|
|
| {{_ 'private'}}
|
|
|
|
if visibilityCheck
|
|
|
|
i.fa.fa-check
|
|
|
|
span.sub-name {{_ 'private-desc'}}
|
|
|
|
li
|
|
|
|
with "public"
|
|
|
|
a.js-select-visibility
|
|
|
|
i.fa.fa-globe.colorful
|
|
|
|
| {{_ 'public'}}
|
|
|
|
if visibilityCheck
|
|
|
|
i.fa.fa-check
|
|
|
|
span.sub-name {{_ 'public-desc'}}
|
|
|
|
|
2019-03-04 12:04:12 +02:00
|
|
|
template(name="boardChangeVisibilityPopup")
|
|
|
|
+boardVisibilityList
|
|
|
|
|
|
|
|
template(name="boardChangeWatchPopup")
|
|
|
|
ul.pop-over-list
|
|
|
|
li
|
|
|
|
with "watching"
|
|
|
|
a.js-select-watch
|
|
|
|
i.fa.fa-eye.colorful
|
|
|
|
| {{_ 'watching'}}
|
|
|
|
if watchCheck
|
|
|
|
i.fa.fa-check
|
|
|
|
span.sub-name {{_ 'watching-info'}}
|
|
|
|
li
|
|
|
|
with "tracking"
|
|
|
|
a.js-select-watch
|
|
|
|
i.fa.fa-bell.colorful
|
|
|
|
| {{_ 'tracking'}}
|
|
|
|
if watchCheck
|
|
|
|
i.fa.fa-check
|
|
|
|
span.sub-name {{_ 'tracking-info'}}
|
|
|
|
li
|
|
|
|
with "muted"
|
|
|
|
a.js-select-watch
|
|
|
|
i.fa.fa-bell-slash.colorful
|
|
|
|
| {{_ 'muted'}}
|
|
|
|
if watchCheck
|
|
|
|
i.fa.fa-check
|
|
|
|
span.sub-name {{_ 'muted-info'}}
|
|
|
|
|
New feature: Now there is popup selection of Lists/Swimlanes/Calendar/Roles.
New feature, not set visible yet, because switching to it does not
work properly yet: Collapsible Swimlanes #2804
Fix: Public board now loads correctly. When you select one of Lists/Swimlanes/Calendar view and
reload webbrowser page, it can change view. Closes #2311
Fix: List sorting commented out. Closes #2800
Fix: Errors hasHiddenMinicardText, hasShowDragHandles, showSort, hasSortBy, profile,
FirefoxAndroid/IE11/Vivaldi/Chromium browsers not working by using
cookies instead of database.
More details at https://github.com/wekan/wekan/issues/2643#issuecomment-554907955
Note: Cookie changes are not always immediate, if there is no effect,
you may need to reload webbrowser page.
Closes #2643 .
Thanks to xet7 !
2019-11-18 22:23:49 +02:00
|
|
|
template(name="boardChangeViewPopup")
|
|
|
|
ul.pop-over-list
|
|
|
|
li
|
|
|
|
with "board-view-swimlanes"
|
|
|
|
a.js-open-swimlanes-view
|
|
|
|
i.fa.fa-th-large.colorful
|
|
|
|
| {{_ 'board-view-swimlanes'}}
|
|
|
|
if $eq Utils.boardView "board-view-swimlanes"
|
|
|
|
i.fa.fa-check
|
2020-06-08 17:53:03 +03:00
|
|
|
li
|
|
|
|
with "board-view-lists"
|
|
|
|
a.js-open-lists-view
|
|
|
|
i.fa.fa-trello.colorful
|
|
|
|
| {{_ 'board-view-lists'}}
|
|
|
|
if $eq Utils.boardView "board-view-lists"
|
|
|
|
i.fa.fa-check
|
New feature: Now there is popup selection of Lists/Swimlanes/Calendar/Roles.
New feature, not set visible yet, because switching to it does not
work properly yet: Collapsible Swimlanes #2804
Fix: Public board now loads correctly. When you select one of Lists/Swimlanes/Calendar view and
reload webbrowser page, it can change view. Closes #2311
Fix: List sorting commented out. Closes #2800
Fix: Errors hasHiddenMinicardText, hasShowDragHandles, showSort, hasSortBy, profile,
FirefoxAndroid/IE11/Vivaldi/Chromium browsers not working by using
cookies instead of database.
More details at https://github.com/wekan/wekan/issues/2643#issuecomment-554907955
Note: Cookie changes are not always immediate, if there is no effect,
you may need to reload webbrowser page.
Closes #2643 .
Thanks to xet7 !
2019-11-18 22:23:49 +02:00
|
|
|
li
|
|
|
|
with "board-view-cal"
|
|
|
|
a.js-open-cal-view
|
|
|
|
i.fa.fa-calendar.colorful
|
|
|
|
| {{_ 'board-view-cal'}}
|
|
|
|
if $eq Utils.boardView "board-view-cal"
|
|
|
|
i.fa.fa-check
|
|
|
|
|
2017-02-22 17:33:17 +05:30
|
|
|
template(name="createBoard")
|
2015-05-27 17:17:00 +02:00
|
|
|
form
|
|
|
|
label
|
|
|
|
| {{_ 'title'}}
|
|
|
|
input.js-new-board-title(type="text" placeholder="{{_ 'bucket-example'}}" autofocus required)
|
|
|
|
if visibilityMenuIsOpen.get
|
|
|
|
+boardVisibilityList
|
|
|
|
else
|
|
|
|
p.quiet
|
|
|
|
if $eq visibility.get 'public'
|
|
|
|
span.fa.fa-globe.colorful
|
2015-06-12 13:59:39 +02:00
|
|
|
= " "
|
2015-05-27 17:17:00 +02:00
|
|
|
| {{{_ 'board-public-info'}}}
|
|
|
|
else
|
|
|
|
span.fa.fa-lock.colorful
|
2015-06-12 13:59:39 +02:00
|
|
|
= " "
|
2015-05-27 17:17:00 +02:00
|
|
|
| {{{_ 'board-private-info'}}}
|
2015-09-17 17:09:30 +02:00
|
|
|
a.js-change-visibility {{_ 'change'}}.
|
2015-05-27 17:17:00 +02:00
|
|
|
input.primary.wide(type="submit" value="{{_ 'create'}}")
|
2015-10-20 20:02:12 +02:00
|
|
|
span.quiet
|
|
|
|
| {{_ 'or'}}
|
2019-02-25 22:48:25 +01:00
|
|
|
a.js-import-board {{_ 'import'}}
|
|
|
|
span.quiet
|
|
|
|
| /
|
|
|
|
a.js-board-template {{_ 'template'}}
|
2015-05-27 17:17:00 +02:00
|
|
|
|
New feature: Now there is popup selection of Lists/Swimlanes/Calendar/Roles.
New feature, not set visible yet, because switching to it does not
work properly yet: Collapsible Swimlanes #2804
Fix: Public board now loads correctly. When you select one of Lists/Swimlanes/Calendar view and
reload webbrowser page, it can change view. Closes #2311
Fix: List sorting commented out. Closes #2800
Fix: Errors hasHiddenMinicardText, hasShowDragHandles, showSort, hasSortBy, profile,
FirefoxAndroid/IE11/Vivaldi/Chromium browsers not working by using
cookies instead of database.
More details at https://github.com/wekan/wekan/issues/2643#issuecomment-554907955
Note: Cookie changes are not always immediate, if there is no effect,
you may need to reload webbrowser page.
Closes #2643 .
Thanks to xet7 !
2019-11-18 22:23:49 +02:00
|
|
|
//template(name="listsortPopup")
|
|
|
|
// h2
|
|
|
|
// | {{_ 'list-sort-by'}}
|
|
|
|
// hr
|
|
|
|
// ul.pop-over-list
|
|
|
|
// each value in allowedSortValues
|
|
|
|
// li
|
|
|
|
// a.js-sort-by(name="{{value.name}}")
|
|
|
|
// if $eq sortby value.name
|
|
|
|
// i(class="fa {{Direction}}")
|
|
|
|
// | {{_ value.label }}{{_ value.shortLabel}}
|
|
|
|
// if $eq sortby value.name
|
|
|
|
// i(class="fa fa-check")
|
2019-10-29 19:05:44 +02:00
|
|
|
|
2015-05-27 17:17:00 +02:00
|
|
|
template(name="boardChangeTitlePopup")
|
|
|
|
form
|
|
|
|
label
|
|
|
|
| {{_ 'title'}}
|
2019-05-08 21:30:38 +03:00
|
|
|
input.js-board-name(type="text" value=title autofocus dir="auto")
|
2015-12-07 11:22:30 +08:00
|
|
|
label
|
|
|
|
| {{_ 'description'}}
|
2019-05-08 21:30:38 +03:00
|
|
|
textarea.js-board-desc(dir="auto")= description
|
2015-05-27 17:17:00 +02:00
|
|
|
input.primary.wide(type="submit" value="{{_ 'rename'}}")
|
2015-06-06 14:48:36 +02:00
|
|
|
|
2018-08-03 19:47:20 +02:00
|
|
|
template(name="boardCreateRulePopup")
|
|
|
|
p {{_ 'close-board-pop'}}
|
|
|
|
button.js-confirm.negate.full(type="submit") {{_ 'archive'}}
|
2021-02-19 08:42:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
template(name="cardsSortPopup")
|
|
|
|
ul.pop-over-list
|
|
|
|
li
|
2021-02-24 16:45:16 +02:00
|
|
|
a.js-sort-due {{_ 'due-date'}}
|
2021-02-19 08:42:09 +08:00
|
|
|
hr
|
|
|
|
li
|
2021-02-24 16:45:16 +02:00
|
|
|
a.js-sort-title {{_ 'title-alphabetically'}}
|
2021-02-19 08:42:09 +08:00
|
|
|
hr
|
|
|
|
li
|
2021-02-24 16:45:16 +02:00
|
|
|
a.js-sort-created-desc {{_ 'created-at-newest-first'}}
|
2021-02-19 08:42:09 +08:00
|
|
|
hr
|
|
|
|
li
|
2021-02-24 16:45:16 +02:00
|
|
|
a.js-sort-created-asc {{_ 'created-at-oldest-first'}}
|
2021-02-19 08:42:09 +08:00
|
|
|
|