{% load i18n %}{% blocktrans with name=guest.name %}Greetings, {{ name }}!{% endblocktrans %}

{% trans "This message regards the following event, which you've been invited to:" %}

{{ event.name }}
{{ event.start_datetime }}


{% if event.host2_name %}{% blocktrans with host1=event.host1_name host2=event.host2_name %}Here's an update from {{ host1 }} and {{ host2 }}:{% endblocktrans %}
{% else %}{% blocktrans with host1=event.host1_name %}Here's an update from {{ host1 }}:{% endblocktrans %}
{% endif %}

{{ message }}


{% trans "To view your invitation or update your RSVP, visit this page:" %}

{{ protocol }}://{{ host }}{% url 'invitation' event_id=event.id %}{{ guest.short_uuid }}/
{% trans "(This link is personalized to you -- do not share!)" %}


--
{% blocktrans with host=host %}Sent by the invitation bot at {{ host }}.{% endblocktrans %}


