{% extends "engine/base.html" %} {% load servertags %} {% block title %}OpenQuake engine: {{ table_name }} from calculation {{ calc_id }}{% endblock %} {% block nav-items %} {{ block.super }}
  • Back to Calculations
  • {% endblock nav-items %} {% 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 %}
    {% if internal_name == 'aggrisk_tags' %}
    {% if is_summary %} Show full table {% else %} Show summary {% endif%}
    {% endif %}
    {% endblock main %}