summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_tables/static_documents.html
blob: 96e2919217e8baa05ebb8b4a1faaaa1016895898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% load i18n %}
<h3>{{caption}}</h3>
<div class='clean-table'>
<div class='clean-table-wrap'>
<table>
  <caption>{{caption}}</caption>
  <tr>{% for col in col_names %}
    <th>{% trans col %}</th>{% endfor %}
  </tr>{% for item in data %}
  <tr>{% for value in item %}
    <td>{{value}}</td>{%endfor%}
  </tr>{% endfor %}
</table>
</div></div>