Fix the highlighting on the HR applications of alts

This commit is contained in:
2011-02-24 16:52:19 +00:00
parent 1939c2e671
commit 1986cdc33a
4 changed files with 4 additions and 3 deletions

View File

@@ -19,7 +19,7 @@
<th>Last Action Date</th>
<th>Last Action User</th></tr>
{% for app in apps %}
<tr><td><a href="{% url hr.views.view_application app.id %}">{{ app.id }}</a></td>
<tr id="alt-application"><td><a href="{% url hr.views.view_application app.id %}">{{ app.id }}</a></td>
<td>{{ app.character }}</td>
<td>{{ app.corporation }}</td>
<td>{{ app.get_status_display }}</td>

View File

@@ -6,7 +6,7 @@
<p>This list shows your current open applications</p>
{% if apps %}
<table>
<tr {% if app.alt_application %}background="#FFA545"{% endif %}><th>Application ID</th><th>Character</th><th>Corporation</th><th>Application Status</th></tr>
<tr><th>Application ID</th><th>Character</th><th>Corporation</th><th>Application Status</th></tr>
{% for app in apps %}
<tr><td><a href="{% url hr.views.view_application app.id %}">{{ app.id }}</a></td>
<td>{{ app.character }}</td>