2016-08-04 02:40:29 +02:00
|
|
|
$# This file is part of Vervis.
|
|
|
|
$#
|
2022-09-17 12:14:27 +02:00
|
|
|
$# Written in 2016, 2019, 2020, 2022 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>
|
2022-10-17 01:44:16 +02:00
|
|
|
$if tsClosed ts
|
|
|
|
<span .#{cClosed}>
|
|
|
|
☒
|
|
|
|
$else
|
|
|
|
<span .#{cTodo}>
|
|
|
|
☐
|
2016-08-04 02:40:29 +02:00
|
|
|
|
2019-12-04 12:35:35 +01:00
|
|
|
<span .ticket-number-column>
|
2020-02-23 16:41:08 +01:00
|
|
|
<a href=@{ticketRoute ts}>
|
2020-02-03 15:53:12 +01:00
|
|
|
###
|
2016-08-04 02:40:29 +02:00
|
|
|
|
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>
|
2022-09-17 12:14:27 +02:00
|
|
|
^{personLinkFedW $ tsCreatedBy ts}
|
2016-08-04 02:40:29 +02:00
|
|
|
|
2019-12-04 12:35:35 +01:00
|
|
|
<span .ticket-title-column>
|
2020-02-23 16:41:08 +01:00
|
|
|
<a href=@{ticketRoute ts}>
|
2020-01-17 22:52:29 +01:00
|
|
|
#{preEscapedToHtml $ tsTitle ts}
|
2020-01-16 11:29:47 +01:00
|
|
|
$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>
|
2022-09-17 12:14:27 +02:00
|
|
|
<a href="#node-#{keyHashidText $ hashTicket $ tsId ts}" title="Jump to subtree">
|
2016-08-04 02:40:29 +02:00
|
|
|
☝
|
|
|
|
$maybe route <- mroute
|
|
|
|
<a href=@?{(route, params)} title="Move subtree here">
|
|
|
|
☚
|
|
|
|
$nothing
|
2019-12-04 12:35:35 +01:00
|
|
|
<span .ticket-node-column>
|
2022-09-17 12:14:27 +02:00
|
|
|
<a id="node-#{keyHashidText $ hashTicket $ tsId ts}">
|