Forgot to invert the condition (was testing locally)

This commit is contained in:
2014-07-15 12:07:05 +02:00
parent 31f15978aa
commit e87855cdbc

View File

@@ -18,7 +18,7 @@
</thead>
<tbody>
{% for application in applications %}
<tr class="{% if application.is_reviewed() %}danger{% endif %}">
<tr class="{% if not application.is_reviewed() %}danger{% endif %}">
<td class="relative content-align-center">{{ application.id }}</td>
<td><a href="{{url_for('applications.view', id=application.id)}}" >
{{application.user.first_name}} {{application.user.last_name}}