summaryrefslogtreecommitdiff
path: root/template/commitfest_search.tt2
blob: ec39ad4928e5ab2d1dcb8cd89c8acc1318af5553 (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
27
28
29
30
31
32
33
34
35
<p>If you have submitted a patch to pgsql-hackers and want it to be reviewed,
you should add it to the <a href='/https/git.postgresql.org/action/commitfest_view/open'>Open
CommitFest</a> (<a href='/https/git.postgresql.org/action/commitfest_activity/open'>Activity Log</a>).
If you want to help with the reviewing process for the
CommitFest that's currently taking place (if any), please visit the
<a href='/https/git.postgresql.org/action/commitfest_view/inprogress'>CommitFest In Progress</a>
(<a href='/https/git.postgresql.org/action/commitfest_activity/inprogress'>Activity Log</a>).
These links are stable and always reference the open or in progress
CommitFest, respectively, provided such a CommitFest exists.  (If there is no
CommitFest in progress, the CommitFest In Progress link will reference the
Open CommitFest instead.)  There is also a stable link for the
<a href='/https/git.postgresql.org/action/commitfest_view/previous'>Previous CommitFest</a>
(<a href='/https/git.postgresql.org/action/commitfest_activity/previous'>Activity Log</a>), meaning
the most recent one that is now marked Closed.  Upcoming CommitFests
(other than the one to which patches should be submitted) are marked
as <b>Future</b>.</p>

[% IF list.size == 0 %]
<p><b>No CommitFests have been defined yet.</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='/https/git.postgresql.org/action/commitfest_view?id=[% x.id %]'>[% x.name | htmlsafe %]</a></td>
  <td class='colLast'>[% x.commitfest_status | htmlsafe %]</td>
</tr>
[% END %]
</table>
</div>
[% END %]