Standardised the URLs and enabled search function on applications

This commit is contained in:
2010-05-17 13:37:10 +01:00
parent e2f88027a3
commit 1b76ccc698
3 changed files with 31 additions and 15 deletions

View File

@@ -3,7 +3,13 @@
{% block title %}Applications{% endblock %}
{% block content %}
<p>This list shows all current applications open for review.</p>
<h3>Search All Applications</h3>
<form method="GET" action="{% url hr.views.admin_applications %}">
<input type="text" name="q" />
<input type="submit" value="Search" />
</form>
{% if apps %}
<table>
<tr><th>Application ID</th><th>Character</th><th>Corporation</th><th>Application Status</th></tr>
@@ -16,7 +22,7 @@
{% endfor %}
</table>
{% else %}
<p>No current open applications</p>
<p>No applications found.</p>
{% endif %}
{% endblock %}