{% extends base %} {% block body %}
{% for card in cards %}

{{card.title}}

{% for row in card.rows %} {% if row.hide == True or _user_role not in row.roles %} {% continue %} {% end %}

{{row.name}} {% if row.size != None %} {{row.size}} {% end %}

{% end %} {% end %}
{% end %}