{% extends "site_base.html" %}
{% load bootstrap %}
{% load registrasion_tags %}
{% block page_title %}Registration report{% endblock %}
{% block head_title %}Registration report - {{ title }}{% endblock %}
{% block content %}
  
{{ title }}
  Return to reports list
  {% if form %}
    
  {% endif %}
{% for report in reports %}
{{ report.title }}
{% if report.headings %}
  
    
      {% for heading in report.headings %}
      | {{ heading }} | 
      {% endfor %}
    
  
{% else %}
{% endif %}
  
    {% for line in report.rows %}
    
      {% for item in line %}
      | {{ item|safe }} | 
      {% endfor %}
    
    {% endfor %}
  
{% endfor %}
{% endblock %}
{% block extra_script %}
{% endblock %}