mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-25 23:59:26 +00:00
32 lines
874 B
HTML
32 lines
874 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Applications{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="page-header">
|
|
<h1>You Applications</h1>
|
|
</div>
|
|
|
|
{% if applications %}
|
|
<p>This is a list of all your applications. The current status of each application is shown in the Application Status field.</p>
|
|
|
|
<table class="zebra-striped" id="applications">
|
|
<tr><th>Application ID</th><th>Character</th><th>Corporation</th><th>Application Status</th></tr>
|
|
{% for app in applications %}
|
|
<tr><td><a href="{% url hr-viewapplication app.id %}">{{ app.id }}</a></td>
|
|
<td>{{ app.character }}</td>
|
|
<td>{{ app.corporation }}</td>
|
|
<td>{{ app.get_status_display }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% else %}
|
|
<p>You have no current applications</p>
|
|
{% endif %}
|
|
|
|
<p><a href="{% url hr-addapplication %}" class="btn">Apply to a corporation</a></p>
|
|
|
|
{% endblock %}
|