Browse Source

Respect draggable setting

Denis K 8 years ago
parent
commit
d328d82e11

+ 4 - 2
jet/dashboard/templates/jet.dashboard/module.html

@@ -1,8 +1,10 @@
 {% load i18n %}
 
-<div class="dashboard-item{% if module.collapsible %} collapsible{% endif %}{% if module.model.collapsed %} collapsed{% endif %}{% if module.deletable %} deletable{% endif %}{% if module.ajax_load %} ajax{% endif %}"{% if module.ajax_load %} data-ajax-url="{% url "jet-dashboard:load_dashboard_module" pk=module.model.id %}"{% endif %} data-module-id="{{ module.model.id }}">
+<div class="dashboard-item{% if module.collapsible %} collapsible{% endif %}{% if module.model.collapsed %} collapsed{% endif %}{% if module.deletable %} deletable{% endif %}{% if module.ajax_load %} ajax{% endif %}{% if module.draggable %} draggable{% endif %}"{% if module.ajax_load %} data-ajax-url="{% url "jet-dashboard:load_dashboard_module" pk=module.model.id %}"{% endif %} data-module-id="{{ module.model.id }}">
     <div class="dashboard-item-header">
-        <span class="dashboard-item-header-drag icon-grid"></span>
+        {% if module.draggable %}
+            <span class="dashboard-item-header-drag icon-grid"></span>
+        {% endif %}
         <span class="dashboard-item-header-buttons">
             <a href="{% url "jet-dashboard:update_module" pk=module.model.id %}" title="{% trans "Change" %}"><span class="icon-edit"></span></a>
 

+ 1 - 1
jet/static/jet/js/src/features/dashboard.js

@@ -128,7 +128,7 @@ Dashboard.prototype = {
             tolerance: 'pointer',
             accept: '.dashboard-item'
         }).sortable({
-            items: '.dashboard-item',
+            items: '.dashboard-item.draggable',
             handle: '.dashboard-item-header',
             tolerance: 'pointer',
             connectWith: '.dashboard-column',