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

14 lines
290 B
HTML

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