summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/window_tables/static_documents.html
blob: d6686b553849d9cd209b08ffb44f275c60a26002 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% load i18n %}

<table class='simple'>
  <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>