summaryrefslogtreecommitdiffstats
path: root/webapp/templates/starred.html
blob: dbe21cbd6a830c8b555f8594b8da16e4050efc00 (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
{%extends "changes_base.html"%}

{%block title1%}Starred Changes -{%endblock%}

{%block body%}

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

<h1>Starred Changes</h1>

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

<script language="JavaScript" type="text/javascript"><!--
var dashboardState = new M_DashboardState(window,'change');
-->
</script>
{%endblock%}