{% load i18n %}{% trans "Greetings, event host!" %}

{% trans "This message regards this event:" %}

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

{% blocktrans with name=reply.guest.name status=status %}{{ name }} has replied: {{ status }}{% endblocktrans %}

{% if reply.extra_guests %}{% blocktrans count extra_guests=reply.extra_guests %}They are bringing {{ extra_guests }} person with them.{% plural %}They are bringing {{ extra_guests }} people with them.{% endblocktrans %}{% endif %}

{% if reply.comment %}{% trans "They also said:" %}

{{ reply.comment }}{% endif %}

{% trans "You can administer your event here:" %}

{{ protocol }}://{{ host }}{{ link }}


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


