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

15 lines
386 B
HTML

{% extends "base.html" %}
{% block title %}Reject Application{% endblock %}
{% block content %}
<p>Fill in the rejection reason below, please note, this will be sent out to the user.</p>
<form action="{% url hr.views.reject_application applicationid %}" method="post">
<table>
{{ form.as_table }}
</table>
{% csrf_token %}
<input type="submit" value="Apply" />
</form>
{% endblock %}