Files
Touchh/.venv/lib/python3.10/site-packages/jet/dashboard/templates/jet.dashboard/dashboard.html
2024-12-06 10:45:08 +09:00

38 lines
1.4 KiB
HTML

{% load i18n %}
<div class="dashboard-container columns_{{ columns|length }} cf">
{% for i in columns %}
<div class="dashboard-column-wrapper">
<div class="dashboard-column{% if forloop.first %} first{% endif %}">
{% for module in modules %}
{% if module.model.column == i %}
{% include "jet.dashboard/module.html" with module=module %}
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
</div>
<div class="dialog-confirm" id="module-remove-dialog" title="{% trans "Delete widget" %}">
<p>{% trans "Are you sure want to delete this widget?" %}</p>
</div>
<form action="{% url "jet-dashboard:update_dashboard_modules" %}" method="POST" id="update-dashboard-modules-form">
{% csrf_token %}
<input type="hidden" name="app_label" value="{% if app_label %}{{ app_label }}{% endif %}">
<input type="hidden" name="modules">
</form>
<form action="{% url "jet-dashboard:update_dashboard_module_collapse" %}" method="POST" id="update-dashboard-module-collapse-form">
{% csrf_token %}
<input type="hidden" name="id">
<input type="hidden" name="collapsed">
</form>
<form action="{% url "jet-dashboard:remove_dashboard_module" %}" method="POST" id="remove-dashboard-module-form">
{% csrf_token %}
<input type="hidden" name="id">
</form>