{% extends "docato/base.html" %} {% load staticfiles %} {% load i18n %} {% block extrahead %} {{ block.super }} {% endblock extrahead %} {% block navbar %}
  • {% trans 'Projects' %}
  • {{ subject.project.name }}
  • {{ subject.name }}
  • {% trans 'Summary table' %}
  • {% trans 'Show cues' %}
  • {% endblock navbar %} {% block content %} {% for slot_name in header_iterator %} {% endfor %} {% for doc, frames in rows %} {% for frame, values in frames %} {% if forloop.first %} {% endif %} {% for value_type, is_list, value in values %} {% endfor %} {% endfor %} {% endfor %}
    {% trans 'Document' %} {% trans 'Frame' %}{{ slot_name|safe }}
    {{ doc.title }}{{ frame.type.name }} {{ frame.name }} {% if value_type == "none" %} {% trans '-' %} {% elif value_type == "simple" %} {% if is_list %} {% for val, txt in value %} {% if txt %} {{ val }} {% else %} {% trans '-' %} {% endif %}{% spaceless %} {% if not forloop.last %} ;
    {% endif %} {% endspaceless %} {% endfor %} {% else %} {% if value.1 %} {{ value.0 }} {% else %} {% trans '-' %} {% endif %} {% endif %} {% elif value_type == "ref" %} {% if is_list %} {% else %} {% trans 'Reference to' %} {{ value.type.name }} {{ value.name }} {% endif %} {% else %} qwe {{ value_type }} {% endif %}
    {% endblock content %}