{% extends "engine/base.html" %} {% load servertags %} {% block title %}OpenQuake engine: {{ table_name }} from calculation {{ calc_id }}{% endblock %} {% block main %} {{ block.super }}

{{ table_name }}

{% for header in table_header %} {% endfor %} {% for row in table_contents %} {% for item in row %} {% if forloop.first %} {# assuming ID is the first column, otherwise it requires more work to avoid humanizing it by name #} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ header|safe }}
{{ item|stringformat:"s"|linebreaksbr }} {% if item|stringformat:"s"|floatformat %} {{ item|humanize_number }} {% else %} {{ item|stringformat:"s"|linebreaksbr }} {% endif %}
{% endblock main %}