Просмотр исходного кода

Add module custom style property

Denis K 9 лет назад
Родитель
Сommit
bbf103622f
2 измененных файлов с 2 добавлено и 1 удалено
  1. 1 0
      jet/modules.py
  2. 1 1
      jet/templates/jet/dashboard/module.html

+ 1 - 0
jet/modules.py

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

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

@@ -25,7 +25,7 @@
         </span>
     </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 %}
             <div class="loading-indicator-wrapper">
                 <span class="icon-refresh loading-indicator"></span>