summaryrefslogtreecommitdiff
path: root/template/commitfest_topic_search.tt2
blob: 17c0e716b2ade9fcda9a1ffbbd5f421b60bfc3d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<p></p>
[% IF topic_list.size %]
<div class='tblBasic'>
<table cellspacing='0' class='tblBasicGrey'>
<tr class='firstrow'>
  <th class='colFirst'>Topic</th>
  <th>Sort Order</th>
  <th class='colLast'>Action</th>
</tr>
[% FOREACH t = topic_list %]
<tr[% IF loop.last %] class='lastrow'[% END %]>
  <td class='colFirst'>[% t.name | htmlsafe %]</a></td>
  <td>[% t.sortorder | htmlsafe %]</a></td>
  <td class='colLast'><a href='/https/git.postgresql.org/action/commitfest_topic_form?id=[% t.id %]'>Edit Topic</a> -
  <a href='/https/git.postgresql.org/action/commitfest_topic_delete?id=[% t.id %]' onClick='return confirm("Are you sure you want to delete this topic?");'>Delete Topic</a></td>
</tr>
[% END %]
</table>
</div>
[% ELSE %]
<div>No topics.</div>
[% END %]