| 12345678910111213141516171819202122232425262728293031323334353637 | 
							- {% load i18n %}
 
- <div class="dashboard 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>
 
 
  |