{% extends "base.html" %} {% block head %}
{% if logo %}
|
{% for column in column_names %} | {{ column }} | {% endfor %}
---|---|
{{ row }} | {% for column in column_names %}
{% if content[row, column]['text'] %}
{{ content[row, column]['text'] }} {% endif %} {% if content[row, column]['graphics'] %} {% for im in content[row, column]['graphics'] %} {% if encode %} {% else %} {% endif %} {% endfor %} {% endif %} {% if content[row, column]['table'] %} {{ content[row, column]['table'] }} {% endif %} {% if content[row, column]['link'] %} {% for link_text, link_html in content[row, column]['link'].items() %} {{ link_text }} {% endfor %} {% endif %} |
{% endfor %}