{% extends "wikiprox/base.html" %} {% load wikiprox_tags %} {% block title %}Timeline{% endblock %} {% block css %}{{ block.super }} {% endblock css %} {% block contents %}{{ block.super }}

Timeline

{% if timeout %}
Could not get timeline data: HTTP request timed out (SOURCES_API).
{% endif %}
{% for event in events %}
{{ event.start_date|date:"F j, Y" }} {% if event.end_date %}—{{ event.end_date|date:"F j, Y" }}{% endif %}
{% if event.title %}{{ event.title|safe }}
{% endif %} {{ event.description|safe }} {% if event.url %}For more information: {{ event.url }}
{% endif %}
{% endfor %}
{% endblock contents %}