From 12f008714c78346dbbcadfe723d572d6ab7f33c3 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Sun, 18 Apr 2010 02:56:59 +0100 Subject: [PATCH] Added admin templates --- .../hr/applications/admin/view_list.html | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 templates/hr/applications/admin/view_list.html diff --git a/templates/hr/applications/admin/view_list.html b/templates/hr/applications/admin/view_list.html new file mode 100644 index 0000000..686affe --- /dev/null +++ b/templates/hr/applications/admin/view_list.html @@ -0,0 +1,22 @@ +{% extends "base.html" %} + +{% block title %}Applications{% endblock %} + +{% block content %} +

This list shows all current applications open for review.

+{% if apps %} + + +{% for app in apps %} + + + + + +{% endfor %} +
Application IDCharacterCorporationApplication Status
{{ app.id }}{{ app.character }}{{ app.corporation }}{{ app.status_description }}
+{% else %} +

No current open applications

+{% endif %} + +{% endblock %}