2016-04-30 23:02:44 +00:00
|
|
|
$# This file is part of Vervis.
|
|
|
|
$#
|
2018-05-26 08:02:07 +00:00
|
|
|
$# Written in 2016, 2018 by fr33domlover <fr33domlover@riseup.net>.
|
2016-04-30 23:02:44 +00: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/>.
|
|
|
|
|
|
|
|
<p>
|
2018-05-26 08:02:07 +00:00
|
|
|
<a href=@{TicketNewR shr prj}>Create new…
|
2016-04-30 23:02:44 +00:00
|
|
|
|
2016-08-04 07:36:24 +00:00
|
|
|
<p>
|
2018-05-26 08:02:07 +00:00
|
|
|
<a href=@{TicketTreeR shr prj}>View as tree…
|
2016-08-04 07:36:24 +00:00
|
|
|
|
2018-05-26 08:02:07 +00:00
|
|
|
<form method=GET action=@{TicketsR shr prj} enctype=#{filtEnctype}>
|
2016-05-22 14:31:56 +00:00
|
|
|
^{filtWidget}
|
|
|
|
<input type="submit" value="Filter">
|
|
|
|
|
2016-04-30 23:02:44 +00:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Number
|
2016-05-01 09:58:55 +00:00
|
|
|
<th>Author
|
2016-04-30 23:02:44 +00:00
|
|
|
<th>Title
|
2016-08-11 00:44:11 +00:00
|
|
|
<th>Status
|
|
|
|
$forall (Value number, Entity _ author, Value title, Value status) <- rows
|
2016-04-30 23:02:44 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
2018-05-26 08:02:07 +00:00
|
|
|
<a href=@{TicketR shr prj number}>#{number}
|
2016-04-30 23:02:44 +00:00
|
|
|
<td>
|
2016-05-24 21:48:21 +00:00
|
|
|
^{personLinkW author}
|
2016-04-30 23:02:44 +00:00
|
|
|
<td>
|
2018-05-26 08:02:07 +00:00
|
|
|
<a href=@{TicketR shr prj number}>#{title}
|
2016-05-01 09:58:55 +00:00
|
|
|
<td>
|
2016-08-11 00:44:11 +00:00
|
|
|
#{show status}
|