{% extends "base_generic.html" %} {% load staticfiles %} {% block title %}{{ title }}{% endblock %} {% block heading %}{{ title }}{% endblock %} {% block content %}
{% if list_id %}

List '{{list_id}}' of entities in collection '{{coll_id}}'

{% else %}

List of entities in collection '{{coll_id}}'

{% endif %}
{% csrf_token %}

Search

{% with field=list_choices %} {% include field.field_render_edit %} {% endwith %}
{% for field in fields %} {% include field.field_render_head %} {% endfor %} {% for entity in entities %} {% for field in entity.fields %} {% include field.field_render_item %} {% endfor %} {% endfor %}
 
{% endblock %}