summaryrefslogtreecommitdiff
path: root/pgcommitfest/commitfest/templates/activity.html
blob: a864eee88bf28963f69f3050641756f5b142a4f3 (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
{%extends "base.html"%}
{%load commitfest %}
{%block contents%}

<table class="table table-striped table-bordered table-hover table-condensed">
 <thead>
  <tr>
   <th>Time</th>
   <th>User</th>
{%if not commitfest%}<th>CommitFest</th>{%endif%}
   <th>Patch</th>
   <th>Activity</th>
  </tr>
 </thead>
 <tbody>
{%for a in activity %}
  <tr>
    <td style="white-space: nowrap;">{{a.date}}</td>
    <td>{{a.by}}</td>
{%if not commitfest%}<td>{{a.cfname}}</td>{%endif%}
    <td><a href="/{%if commitfest%}{{commitfest.id}}{%else%}{{a.cfid}}{%endif%}/{{a.patchid}}/">{{a.name}}</a></td>
    <td>{{a.what}}</td>
  </tr>
{%endfor%}
 </tbody>
</table>

{%endblock%}