{% extends "base.html" %} {% block content %} {% macro row(label) -%}

{{ label }}

{{ caller() }}

{%- endmacro %} {% call row('description') %} {{ data_source.description }} {% endcall %} {% call row('size') %} {{ data_source.articles|length }} {% endcall %} {% if plot_div is not none %}
{% if plot_div is defined %} {{ plot_div|indent(4)|safe }} {% else %}

There is no data to show.

{% endif %}
{% endif %} {% endblock %}