{% extends "base.html" %} {%block page_title %} {{ title }} {% endblock %} {%block content %}

{{ title }}

{{ bag.contents }}

    {% for t, c in bag.values('type') %}
  1. {{ t }}
      {% for entity in bag(type=t) %}
    1. {{entity.html_summarized_view | safe}}
    2. {% endfor %}
  2. {% endfor %}
{% endblock %}