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