Enable proposal index to be styled by status

This commit is contained in:
str4d
2016-04-11 04:20:31 +00:00
parent 5e482fbd73
commit 7d0e58469d

View File

@@ -12,7 +12,7 @@ To submit a proposal, post it on the <a href="{{ dev }}">development forum</a>
or <a href="{{ trac }}">enter a ticket with the proposal attached</a>.
{%- endtrans %}</p>
<table>
<table class="proposals">
<tr>
<th>Number</th>
<th>Title</th>
@@ -21,7 +21,7 @@ or <a href="{{ trac }}">enter a ticket with the proposal attached</a>.
<th>Link</th>
</tr>
{% for proposal in proposals %}
<tr>
<tr class="status-{{ proposal.status|lower }}">
<td>{{ proposal.num }}</td>
<td>{{ proposal.title }}</td>
<td><time>{{ proposal.lastupdated }}</time></td>