{% extends 'zbx_dashboard/base.html' %} {% load i18n %} {% block extrahead %} {% endblock %} {% block jquery %} // Set equal height of elements function setEqualHeight(columns){ var tallestcolumn = 0; columns.each( function(){ currentHeight = $(this).height(); if(currentHeight > tallestcolumn){ tallestcolumn = currentHeight; } } ); columns.height(tallestcolumn); } setEqualHeight($(".row > div")); {% endblock %} {% block content %}
{% for board in object_list %}

{{ board.title }}

{% if user.is_authenticated and user.is_staff %} {% trans "Edit" %} {% endif %}

{{ board.description }}

{% empty %}

{% trans "No dashboards" %}

{% endfor %}
{% endblock %}