2025-04-11 10:27:34 +05:30
|
|
|
{% load i18n %}
|
|
|
|
|
<div id="stage-container">
|
|
|
|
|
{% include "generic/horilla_nav.html" %}
|
2025-05-19 14:02:22 +05:30
|
|
|
<span hx-post="{% url 'project-bulk-archive' %}?is_active=false"
|
|
|
|
|
hx-confirm="{% trans 'Do you really want to archive all the selected projects?' %}" id="bulkArchiveProject">
|
|
|
|
|
</span>
|
|
|
|
|
<span hx-post="{% url 'project-bulk-archive' %}?is_active=true"
|
|
|
|
|
hx-confirm="{% trans 'Do you really want to unarchive all the selected projects?' %}" id="bulkUnArchiveProject">
|
|
|
|
|
</span>
|
|
|
|
|
<span hx-post="{% url 'project-bulk-delete' %}"
|
|
|
|
|
hx-confirm="{% trans 'Do you really want to delete all the selected projects?' %}" id="bulkDeleteProject">
|
|
|
|
|
</span>
|
2025-04-11 10:27:34 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-05-19 14:02:22 +05:30
|
|
|
$("#applyFilter").closest("form").find("[name=is_active]").val("true");
|
|
|
|
|
$("#applyFilter").click();
|
2025-02-14 10:08:50 +05:30
|
|
|
</script>
|