{% extends "datashow/base.html" %} {% load datashow_tags %} {% block title %} {% if row_label %} {{ row_label }} {% else %} {{ table.label }} {% endif %} {% endblock title %} {% block content %} {% block datashow_rowheader %} {% block datashow_rowheader_breadcrumb %} {% if dataset.default_table != table %} ← {{ table.label }} {% else %} ← {{ table.label }} {% endif %} {% endblock datashow_rowheader_breadcrumb %} {% if row_label %}

{{ row_label }}

{% endif %} {% if row_description %}
{{ row_description|markdownify }}
{% endif %} {% endblock datashow_rowheader %} {% block datashow_rowbody %}
{% for rendered in row %}
{{ rendered.column.label }}
{{ rendered.formatted_value }}
{% endfor %}
{% endblock datashow_rowbody %} {% endblock content %}