mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
15 lines
386 B
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 %}
|