Files
test-auth/templates/hr/applications/add.html

15 lines
358 B
HTML

{% extends "base.html" %}
{% block title %}Create Application{% endblock %}
{% block content %}
<p>Select the character you wish to apply with, then the corporation you wish to apply for.</p>
<form action="{% url hr.views.add_application %}" method="post">
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Apply" />
</form>
{% endblock %}