mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
76 lines
2.3 KiB
Text
76 lines
2.3 KiB
Text
template(name="minicard")
|
|
.minicard
|
|
if cover
|
|
.minicard-cover(style="background-image: url('{{cover.url}}');")
|
|
if labels
|
|
.minicard-labels
|
|
each labels
|
|
.minicard-label(class="card-label-{{color}}" title="{{name}}")
|
|
.minicard-title
|
|
if $eq 'prefix-with-full-path' currentBoard.presentParentTask
|
|
.parent-prefix
|
|
| {{ parentString ' > ' }}
|
|
if $eq 'prefix-with-parent' currentBoard.presentParentTask
|
|
.parent-prefix
|
|
| {{ parentCardName }}
|
|
+viewer
|
|
| {{ title }}
|
|
if $eq 'subtext-with-full-path' currentBoard.presentParentTask
|
|
.parent-subtext
|
|
| {{ parentString ' > ' }}
|
|
if $eq 'subtext-with-parent' currentBoard.presentParentTask
|
|
.parent-subtext
|
|
| {{ parentCardName }}
|
|
|
|
.dates
|
|
if receivedAt
|
|
unless startAt
|
|
unless dueAt
|
|
unless endAt
|
|
.date
|
|
+minicardReceivedDate
|
|
if startAt
|
|
.date
|
|
+minicardStartDate
|
|
if dueAt
|
|
unless endAt
|
|
.date
|
|
+minicardDueDate
|
|
if endAt
|
|
.date
|
|
+minicardEndDate
|
|
if spentTime
|
|
.date
|
|
+cardSpentTime
|
|
|
|
.minicard-custom-fields
|
|
each customFieldsWD
|
|
if definition.showOnCard
|
|
.minicard-custom-field
|
|
.minicard-custom-field-item
|
|
= definition.name
|
|
.minicard-custom-field-item
|
|
+viewer
|
|
= trueValue
|
|
|
|
if members
|
|
.minicard-members.js-minicard-members
|
|
each members
|
|
+userAvatar(userId=this)
|
|
|
|
.badges
|
|
if comments.count
|
|
.badge(title="{{_ 'card-comments-title' comments.count }}")
|
|
span.badge-icon.fa.fa-comment-o.badge-comment
|
|
span.badge-text= comments.count
|
|
if description
|
|
.badge.badge-state-image-only(title=description)
|
|
span.badge-icon.fa.fa-align-left
|
|
if attachments.count
|
|
.badge
|
|
span.badge-icon.fa.fa-paperclip
|
|
span.badge-text= attachments.count
|
|
if checklists.count
|
|
.badge(class="{{#if checklistFinished}}is-finished{{/if}}")
|
|
span.badge-icon.fa.fa-check-square-o
|
|
span.badge-text.check-list-text {{checklistFinishedCount}}/{{checklistItemCount}}
|