Browse Source

Add module custom style property

Denis K 9 năm trước cách đây
mục cha
commit
bbf103622f

+ 1 - 0
jet/modules.py

@@ -30,6 +30,7 @@ class DashboardModule(object):
     order = None
     order = None
     ajax_load = False
     ajax_load = False
     contrast = False
     contrast = False
+    style = False
 
 
     class Media:
     class Media:
         css = ()
         css = ()

+ 1 - 1
jet/templates/jet/dashboard/module.html

@@ -25,7 +25,7 @@
         </span>
         </span>
     </div>
     </div>
 
 
-    <div class="dashboard-item-content{% if module.contrast %} contrast{% endif %}">
+    <div class="dashboard-item-content{% if module.contrast %} contrast{% endif %}"{% if module.style %} style="{{ module.style }}"{% endif %}>
         {% if module.ajax_load %}
         {% if module.ajax_load %}
             <div class="loading-indicator-wrapper">
             <div class="loading-indicator-wrapper">
                 <span class="icon-refresh loading-indicator"></span>
                 <span class="icon-refresh loading-indicator"></span>