blob: 3edd8b96c58a95f097440ae2bf20e23a77ba54e0 (
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
|
{%extends "base.html"%}
{%block contents%}
<p>
{%if inprogresscf%}A commitfest is currently in progress: <a href="/{{inprogresscf.id}}/">{{inprogresscf}}</a>.{%endif%}
</p>
<p>
Useful links that you can use and bookmark:
</p>
<ul>
<li><a href="/https/git.postgresql.org/current/">All patches in the current commitfest</a></li>
<li><a href="/https/git.postgresql.org/open/">All patches in the open commitfest</a></li>
<li><a href="/https/git.postgresql.org/open/new/">Create a new commitfest entry</a></li>
<li><a href="/https/git.postgresql.org/current/?author=-3">Your entries in the current commitfest</a></li>
<li><a href="/https/git.postgresql.org/open/?author=-3">Your entries in the open commitfest</a></li>
<li><a href="/https/git.postgresql.org/current/?reviewer=-3">Entries that you are reviewing in current commitfest</a></li>
</ul>
<h3>Commands</h3>
<form method="GET" action="/https/git.postgresql.org/search/" class="form-inline">
<div class="form-group">
<input type="text" class="form-control" id="searchterm" name="searchterm" placeholder="Global search">
</div>
<button type="submit" class="btn btn-default">Search</button>
</form>
<h3>List of commitfests</h3>
<ul>
{%for c in commitfests%}
<li><a href="/{{c.id}}/">{{c}}</a> ({{c.statusstring}}{%if c.startdate%} - {{c.periodstring}}{%endif%})</li>
{%endfor%}
</ul>
<br/>
{%endblock%}
|