summaryrefslogtreecommitdiffstats
path: root/webapp/templates/unclaimed.html
blob: 2c6c6fd4af1bd9f21e32d90f699f61b7737a4f47 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{%extends "changes_base.html"%}
{%block title1%}Unclaimed changes -{%endblock%}

{%block body%}

<script language="JavaScript" type="text/javascript"><!--
function keyPressIntermediary(evt) {
  return M_dashboardKeyPress(evt);
}
document.onkeypress = keyPressIntermediary;
-->
</script>


<h1>Unclaimed changes</h1>
<table class="change-list">
  
{%include "change_heading.html"%}

{% if not projects %}
<tr>
  <td colspan="8">
    <span class="disabled">(None)</span>
  </td>
</tr>
{% endif %}

{% for project in projects %}
<tr>
  <th colspan="8" class="header-title">Project: {{project.name}}</th>
</tr>

{%if not project.changes%}
  <tr>
    <td colspan="8">
      <span class="disabled">(None)</span>
    </td>
  </tr>
{%else%}
  {%for change in project.changes%}
    {%include "change_row.html"%}
  {%endfor%}
{%endif%}

{%endfor%}

</table>

{%endblock%}