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

23 lines
605 B
HTML

{% extends "base.html" %}
{% block title %}Accept Application{% endblock %}
{% block content %}
<div class="page-header">
<h1>Accept Application</h1>
</div>
<p>Fill in a note you want to send to the user.</p>
<form action="{% url hr-acceptapplication application.id %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% include "formtools/formfield.html" with field=form.text class="xxlarge" %}
{% include "formtools/formfield.html" with field=form.template %}
{% csrf_token %}
<input type="submit" value="Add" class="btn primary"/>
</fieldset>
</form>
{% endblock %}