mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
13 lines
278 B
HTML
13 lines
278 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>
|
|
<input type="submit" value="Apply" />
|
|
</form>
|
|
{% endblock %}
|