2025-05-08 13:18:49 +05:30
|
|
|
<div class="oh-switch p-3">
|
|
|
|
|
{% if url %}
|
|
|
|
|
<input type="checkbox" name="is_active" id="isActiveToggleId"
|
2025-05-09 11:14:51 +05:30
|
|
|
hx-post={{url}}
|
|
|
|
|
hx-trigger="change" hx-target="#genericModalBody"
|
2025-05-08 13:18:49 +05:30
|
|
|
class="oh-switch__checkbox"
|
|
|
|
|
{% if instance.is_active %} checked {% endif %}>
|
|
|
|
|
{% else %}
|
2025-05-09 11:14:51 +05:30
|
|
|
<input type="checkbox" id="isActiveToggleId" class="oh-switch__checkbox"
|
2025-05-08 13:18:49 +05:30
|
|
|
{% if instance.is_active %} checked {% endif %} disabled >
|
|
|
|
|
{% endif %}
|
2025-05-09 11:14:51 +05:30
|
|
|
</div>
|