{% extends "ics/base.html" %} {% load base_tags %} {% load base_filters %} {% block title %}{% trans 'ICS Status' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% if ics.status == "failed" %}

{% trans "ICS Creation Failed!" %}

{{ datetime.now }}

{% trans "Please try again." %}

{% else %} {% if ics.status == "completed" %}

{% trans "ICS Creation Completed!" %}

{{ datetime.now }}

{% trans "Download" %} {% trans "here" %}

{% else %}

{% trans "Processing ICS Creation!" %}

{{ datetime.now }}

{% trans "We're not done yet!" %}

{% trans "Please wait while we finish processing your ics file." %}

{% endif %} {% endif %}
{% endblock %} {% block extra_body %} {{ block.super }} {% if ics.status == "pending" %} {% endif %} {% endblock %}