summaryrefslogtreecommitdiff
path: root/pgcommitfest/commitfest/templates/activity.html
blob: 1d5a060f4e64b6b9a29978431189c6b1cbdf7de3 (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
{%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>
   <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>
    <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%}