{% extends "layout.html" %} {% block scripts %} {% endblock%} {% block content %}
{% if current %}

{{ current.name or '_Choose a name_' }}

{% if proposal %}
{% endif %}
{% for card in current.cards %}
{{ card.prefix | symbolreplace(card.symbols) | safe }}
{% endfor %}

Rulings

{% for ruling in current.rulings %}
{% endfor %}
{% else %}
{% endif %}
{% if proposal %}
{% endif %} {% for group in groups %} {% if current and group.uid == current.uid %} {{ group.name or '_Choose a name_' }} {{ group.cards | length}} {% else %} {{ group.name or '_Choose a name_' }} {% set state_colors = { "ORIGINAL": "text-bg-primary", "NEW": "text-bg-success", "MODIFIED": "text-bg-warning", "DELETED": "text-bg-danger" } %} {{ group.cards | length}} {% endif %} {% endfor %}
{% endblock %}