{% load helpers %} {% if computed_fields %}
Computed Fields
{% for grouping, fields in computed_fields.items %} {% with forloop.counter0 as count %} {% if grouping != "" %} {% endif %} {% for field, value in fields %} {% endfor %} {% endwith %} {% endfor %}
{{ field }} {% if field.output_type == 'markdown' %} {{ value|render_markdown }} {% else %} {{ value }} {% endif %}
{% endif %}