ATS/templates/recruitment/partials/note_modal.html
2026-02-01 13:38:06 +03:00

18 lines
911 B
HTML

{% load static i18n %}
<div class="modal fade" id="noteModal" tabindex="-1" aria-labelledby="noteModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content bg-white border border-gray-200 rounded-xl shadow-lg">
<div class="modal-header flex justify-between items-center px-6 py-4 border-b border-gray-200">
<h5 class="modal-title text-lg font-bold text-temple-dark" id="noteModalLabel">
<i data-lucide="sticky-note" class="w-5 h-5 inline mr-2"></i>{% trans "Add Note" %}
</h5>
<button type="button" class="text-gray-400 hover:text-gray-600 transition p-1" data-bs-dismiss="modal" aria-label="Close">
<i data-lucide="x" class="w-5 h-5"></i>
</button>
</div>
<div class="modal-body notemodal p-6">
<!-- Content will be loaded via HTMX -->
</div>
</div>
</div>
</div>