{% extends "seevooplay/base.html" %} {% load add_to_calendar %} {% load i18n static %} {% block title %}{{ event.name }} {{ block.super }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if guest %} {% blocktrans with name=guest.name %}Greetings, {{ name }}!{% endblocktrans %} {% else %} {% blocktrans with username=request.user.username %}Greetings, admin {{ username }}!{% endblocktrans %} {% trans "Edit this event" %} {% endif %}
{% blocktrans %}You are invited to the following event. Please RSVP below!{% endblocktrans %}
| {% trans "Event:" %} | {{ event.name }} |
| {% if event.host2_name %}{% trans "Hosts:" %}{% else %}{% trans "Host:" %}{% endif %} | {% if event.host1_email %}{% endif %}{{ event.host1_name }}{% if event.host1_email %}{% endif %} {% if event.host2_name %}{% trans "and" %} {% if event.host2_email %}{% endif %}{{ event.host2_name }}{% if event.host2_email %}{% endif %}{% endif %} |
| {% trans "When:" %} | {{ date_display }} |
| {% trans "Where:" %} |
{{ event.location_name }} {{ event.location_address }} |
| {% trans "Details:" %} | {{ event.details|safe }} |