mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
23 lines
588 B
HTML
23 lines
588 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Applications{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>This list shows your current open applications</p>
|
|
{% if apps %}
|
|
<table>
|
|
<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>
|
|
<td>{{ app.corporation }}</td>
|
|
<td>{{ app.status_description }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<p>You have no current applications</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|