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

15 lines
347 B
HTML

{% extends "base.html" %}
{% block title %}Accept Application{% endblock %}
{% block content %}
<p>Fill in a note you want to send to the user.</p>
<form action="{% url hr.views.accept_application applicationid %}" method="post">
<table>
{{ form.as_table }}
{% csrf_token %}
</table>
<input type="submit" value="Apply" />
</form>
{% endblock %}