{% extends 'events/management/base.html' %} {% block title %}{% trans %}Offline Copy{% endtrans %}{% endblock %} {% block content %}
{%- trans %}New Offline Copy{% endtrans -%}
{% trans %}This will build an offline copy of the event. This is useful if you want to make it available where no Internet connection is available.{% endtrans %}
{%- trans %}Existing Offline Copies{% endtrans -%}
{% if static_sites %} {% set label_mapping = { 'success': 'accept', 'failed': 'danger', 'expired': 'warning', 'running': 'highlight' } %} {% set has_downloads = static_sites|selectattr('state.name', 'equalto', 'success')|any %} {% if has_downloads %} {% endif %} {% for site in static_sites %} {% if has_downloads %} {% endif %} {% endfor %}
{% trans %}Requested by{% endtrans %} {% trans %}Requested on{% endtrans %} {% trans %}Status{% endtrans %}{% trans %}Download{% endtrans %}
{{ site.creator.full_name }} {{ site.requested_dt|format_datetime(timezone=site.event.tzinfo) }} {{ site.state.title }} {% if site.state.name == 'success' %} {%- trans %}Download{% endtrans -%} {% endif %}
{% else %} {% trans %}There are no offline copies of this event.{% endtrans %} {% endif %}
{% endblock %}