{% extends "base.html" %} {% load i18n %} {% block content %}
{% if event.is_full %}

{% trans "Sorry, this Event is already full" %}

{% elif event.is_past %}

{% trans "Sorry, this Event already took place" %}

{% else %} {% endif %}

{% trans "You can not join" %}

{% trans "Back" %}
{% endblock content %}