File diff 737db640aaeb → 286304157d27
pinaxcon/templates/registrasion/report.html
Show inline comments
...
 
@@ -7,25 +7,31 @@
 
  <h2>{{ title }}</h2>
 

	
 
  {% if form %}
 
    <form method="GET">
 
      {{ form | bootstrap}}
 
      <br/>
 
      <input type="submit">
 
    </form>
 
  {% endif %}
 
<hr />
 

	
 
{% for report in reports %}
 

	
 
  <div class="btn-group pull-right">
 
    <a class="btn btn-default" href="{% report_as_csv forloop.counter0 %}">View as CSV</a>
 
  </div>
 

	
 
  <h3>{{ report.title }}</h3>
 

	
 
  <table class="table table-striped">
 
    <tr>
 
      {% for heading in report.headings %}
 
        <th>{{ heading }}</th>
 
      {% endfor %}
 
    </tr>
 
    {% for line in report.rows %}
 
      <tr>
 
        {% for item in line %}
 
          <td>
 
            {{ item|safe }}
 
          </td>