mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-25 23:59:26 +00:00
23 lines
605 B
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 %}
|