summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_tables/static_documents.html
blob: e378bdf4911c733655cc0af73f7a5502477ab72e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% load i18n %}
<h4>{{caption}}</h4>
<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>