mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-26 03:11:20 +01:00
72 lines
3.0 KiB
HTML
72 lines
3.0 KiB
HTML
{% load i18n %}
|
|
{% if active %}
|
|
<div class="show-loading" hx-get="{% url 'entities_table_active' %}" hx-trigger="updated from:window"
|
|
hx-swap="outerHTML">
|
|
{% else %}
|
|
<div class="show-loading" hx-get="{% url 'entities_table_archived' %}" hx-trigger="updated from:window"
|
|
hx-swap="outerHTML">
|
|
{% endif %}
|
|
{% if entities %}
|
|
<div>
|
|
<c-config.search></c-config.search>
|
|
<div class="overflow-x-auto">
|
|
<table class="table table-zebra">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="table-col-auto"></th>
|
|
<th scope="col">{% translate 'Name' %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for entity in entities %}
|
|
<tr class="entity">
|
|
<td class="table-col-auto">
|
|
<div class="join" role="group" aria-label="{% translate 'Actions' %}">
|
|
<a class="btn btn-secondary btn-sm join-item"
|
|
role="button"
|
|
hx-swap="innerHTML"
|
|
data-tippy-content="{% translate "Edit" %}"
|
|
hx-get="{% url 'entity_edit' entity_id=entity.id %}"
|
|
hx-target="#generic-offcanvas">
|
|
<i class="fa-solid fa-pencil fa-fw"></i></a>
|
|
{% if not entity.owner %}
|
|
<a class="btn btn-secondary btn-sm join-item text-warning"
|
|
role="button"
|
|
data-tippy-content="{% translate "Take ownership" %}"
|
|
hx-get="{% url 'entity_take_ownership' entity_id=entity.id %}">
|
|
<i class="fa-solid fa-crown fa-fw"></i></a>
|
|
{% endif %}
|
|
{% if user == entity.owner %}
|
|
<a class="btn btn-secondary btn-sm join-item"
|
|
role="button"
|
|
hx-target="#generic-offcanvas"
|
|
hx-swap="innerHTML"
|
|
data-tippy-content="{% translate "Share" %}"
|
|
hx-get="{% url 'entity_share_settings' pk=entity.id %}">
|
|
<i class="fa-solid fa-share fa-fw"></i></a>
|
|
{% endif %}
|
|
<a class="btn btn-error btn-sm join-item"
|
|
role="button"
|
|
hx-swap="innerHTML"
|
|
data-tippy-content="{% translate "Delete" %}"
|
|
hx-delete="{% url 'entity_delete' entity_id=entity.id %}"
|
|
hx-trigger='confirmed'
|
|
data-bypass-on-ctrl="true"
|
|
data-title="{% translate "Are you sure?" %}"
|
|
data-text="{% translate "You won't be able to revert this!" %}"
|
|
data-confirm-text="{% translate "Yes, delete it!" %}"
|
|
_="install prompt_swal"><i class="fa-solid fa-trash fa-fw"></i></a>
|
|
</div>
|
|
</td>
|
|
<td>{{ entity.name }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
<c-msg.empty title="{% translate "No entities" %}" remove-padding></c-msg.empty>
|
|
{% endif %}
|
|
</div>
|