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
No related branches found
No related tags found
No related merge requests found
......@@ -17,9 +17,9 @@
<h1 class="page-header"><i class="fa fa-dashboard fa-fw"></i>{% trans "Dashboard" %}</h1>
{# Actual widgets #}
{% for row in rows %}
<div class='row'>
<div class='row dashboard'>
{% 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 }}
</div>
{% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment