Skip to content
Snippets Groups Projects
Commit 2cf86346 authored by Alice Heaton's avatar Alice Heaton :speech_balloon:
Browse files

Add dashboard class on dashboard rows, and widget height css class on widgets

parent 15c769d8
Branches
No related tags found
No related merge requests found
...@@ -17,9 +17,9 @@ ...@@ -17,9 +17,9 @@
<h1 class="page-header"><i class="fa fa-dashboard fa-fw"></i>{% trans "Dashboard" %}</h1> <h1 class="page-header"><i class="fa fa-dashboard fa-fw"></i>{% trans "Dashboard" %}</h1>
{# Actual widgets #} {# Actual widgets #}
{% for row in rows %} {% for row in rows %}
<div class='row'> <div class='row dashboard'>
{% for widget in row %} {% for widget in row %}
<div class='col-lg-{{ widget.width }} col-md-{{ widget.width }} col-sm-{{ widget.width }}'> <div class='col-lg-{{ widget.width }} col-md-{{ widget.width }} col-sm-{{ widget.width }} widget-height-{{ widget.height }}'>
{{ widget|render_widget }} {{ widget|render_widget }}
</div> </div>
{% endfor %} {% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment