{% extends 'base/base.html' %} {% block body %}

{% trans %}Welcome {{name}}{% endtrans %}

{% trans %}You have been invited to participate to an event{% endtrans %}
{% if event.image is defined %}
{% endif %} {% if event.description is defined %}

{{event.description}}

{% endif %}
{% include 'event/counter.html' %} {% if days_left is defined and days_left > 0 %} {% include 'event/attendance.html' %} {% endif %} {% if items %} {% include 'blog/articles.html' %} {% endif %}
{% endblock body %}