summaryrefslogtreecommitdiff
path: root/template/commitfest_activity.tt2
blob: d6038516c41dced2de297570ec0cebfd99d5bebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<p></p>

[% IF activity.size %]
<div class='tblBasic'>
<table cellspacing='0' class='tblBasicGrey' style='width: 100%'>
<tr class='firstrow'>
  <th class='colFirst'>Time</th>
  <th>User</th>
  <th>Patch</th>
  <th>Activity Type</th>
  <th class='colLast'>Details</th>
</tr>
[% FOREACH a = activity %]
<tr[% IF loop.last %] class='lastrow'[% END %]>
  <td class='colFirstT'>[% a.last_updated_time %]</td>
  <td class='colMidT'>[% a.last_updater | htmlsafe %]</td>
  <td>[% IF a.patch_id.defined %]<a href='/https/git.postgresql.org/action/patch_view?id=[% a.patch_id %]'>[% END %][% a.patch_name | htmlsafe %][% IF a.patch_id.defined %]</a>[% END %]</td>
  <td class='colMidT'>[% a.activity_type | htmlsafe %]</td>
  <td class='colLastT'>[% a.details | htmlsafe %]</td>
</tr>
[% END %]
</table>
</div>
[% ELSE %]
<div>No activity for this CommitFest.</div>
[% END %]