mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
This milestone brings in application auditing, allowing for people to track who modify what applications and provide acception/rejection reasons as part of the messages sent out to the users.
13 lines
273 B
HTML
13 lines
273 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>
|
|
<input type="submit" value="Apply" />
|
|
</form>
|
|
{% endblock %}
|