summaryrefslogtreecommitdiffstats
path: root/webapp/templates/unclaimed.html
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/templates/unclaimed.html')
-rw-r--r--webapp/templates/unclaimed.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/webapp/templates/unclaimed.html b/webapp/templates/unclaimed.html
new file mode 100644
index 0000000000..2c6c6fd4af
--- /dev/null
+++ b/webapp/templates/unclaimed.html
@@ -0,0 +1,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%}