Vervis/templates/ticket/widget/summary.hamlet

63 lines
1.6 KiB
Text
Raw Normal View History

2016-08-04 02:40:29 +02:00
$# This file is part of Vervis.
$#
$# Written in 2016, 2019, 2020 by fr33domlover <fr33domlover@riseup.net>.
2016-08-04 02:40:29 +02:00
$#
$# ♡ Copying is an act of love. Please copy, reuse and share.
$#
$# The author(s) have dedicated all copyright and related and neighboring
$# rights to this software to the public domain worldwide. This software is
$# distributed without any warranty.
$#
$# You should have received a copy of the CC0 Public Domain Dedication along
$# with this software. If not, see
$# <http://creativecommons.org/publicdomain/zero/1.0/>.
2019-12-04 12:35:35 +01:00
<span .ticket-status-column>
$case tsStatus ts
$of TSNew
<span .#{cNew}>
$of TSTodo
<span .#{cTodo}>
$of TSClosed
<span .#{cClosed}>
2016-08-04 02:40:29 +02:00
2019-12-04 12:35:35 +01:00
<span .ticket-number-column>
2016-08-04 02:40:29 +02:00
<a href=@{TicketR shr prj $ tsNumber ts}>
#{tsNumber ts}
2019-12-04 12:35:35 +01:00
<span .ticket-date-column>
#{showDate $ tsCreatedAt ts}
2016-08-04 02:40:29 +02:00
2019-12-04 12:35:35 +01:00
<span .ticket-sharer-column>
^{sharerLinkFedW $ tsCreatedBy ts}
2016-08-04 02:40:29 +02:00
2019-12-04 12:35:35 +01:00
<span .ticket-title-column>
2016-08-04 02:40:29 +02:00
<a href=@{TicketR shr prj $ tsNumber ts}>
#{preEscapedToHtml $ tsTitle ts}
$forall wf <- tsLabels ts
$maybe wfcol <- workflowFieldColor wf
<span .label#{wfcol}>
[#{workflowFieldName wf}]
$nothing
<span .label-nocolor>
[#{workflowFieldName wf}]
2016-08-04 02:40:29 +02:00
2019-12-04 12:35:35 +01:00
<span .ticket-tree-column>
2016-08-04 02:40:29 +02:00
$if tsComments ts > 0
2019-12-04 12:35:35 +01:00
💬
#{tsComments ts}
2016-08-04 02:40:29 +02:00
$maybe params <- mparams
2019-12-04 12:35:35 +01:00
<span .ticket-node-column>
2016-08-04 02:40:29 +02:00
<a href="#node-#{tsNumber ts}" title="Jump to subtree">
$maybe route <- mroute
<a href=@?{(route, params)} title="Move subtree here">
$nothing
2019-12-04 12:35:35 +01:00
<span .ticket-node-column>
<a id="node-#{tsNumber ts}">