{% load i18n %}

{% trans "Compare your plot to others!" %}

{% for overlay in self.overlay_data %} {% endfor %}

{% trans "Plot info" %}

{% for overlay in self.overlay_data %}
{% if overlay.description or overlay.citation %}

{{ overlay.plot_label }}

{% if overlay.description %}

{% trans "Description:" %} {{ overlay.description }}

{% endif %} {% if overlay.citation %}

{% trans "Source:" %} {{ overlay.citation }}

{% endif %} {% endif %}
{% endfor %}