Files
ihrm/employee/templates/tabs/add_note.html
Ashwanth Balakrishnan 58be33a8d7 Added Pre-Commit Hooks (#175)
* Added pre commit hook

* Run pre commit hook on all files

---------

Co-authored-by: Horilla <131998600+horilla-opensource@users.noreply.github.com>
2024-05-07 12:23:36 +05:30

14 lines
331 B
HTML

{% load i18n %}
<form class='oh-general__tab-target oh-profile-section'>
{{note_form.as_p}}
<div class="d-flex flex-row-reverse">
<button
class="oh-btn oh-btn--secondary pr-4 pl-4"
hx-post="{% url 'add-employee-note-post' %}"
hx-target='#remark-content'
>
{% trans "Add" %}
</button>
</div>
</form>