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

14 lines
295 B
HTML

{% extends "base.html" %}
{% block title %}Send Message to Applicant{% endblock %}
{% block content %}
<form action="{% url hr.views.add_message applicationid %}" method="post">
<table>
{{ form.as_table }}
</table>
{% csrf_token %}
<input type="submit" value="Apply" />
</form>
{% endblock %}