blob: da5730b2e4878a47387bd0e113d0054d0bf275cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<p>Please select the CommitFest to which you wish to move this patch.</p>
[% IF list.size == 0 %]
<p><b>No other CommitFests exist.</b></p>
[% ELSE %]
<div class='tblBasic'>
<table cellspacing='0' class='tblBasicGrey'>
<tr>
<th class='colFirst'>CommitFest Name</th>
<th class='colLast'>Status</th>
</tr>
[% FOREACH x = list %]
<tr[% IF loop.last %] class='lastrow'[% END %]>
<td class='colFirst'><a href='/action/patch_form?id=[% d.id %]&commitfest=[% x.id %]'>[% x.name | htmlsafe %]</a></td>
<td class='colLast'>[% x.commitfest_status | htmlsafe %]</td>
</tr>
[% END %]
</table>
</div>
[% END %]
|