{% extends 'base.html' %} {% load i18n %} {% block title %}Events{% endblock %} {% block content %}

{{ event.place.name }}

{{ event.place.address }}

{{ event.place.description }}

{{ event.date|date:"M d Y - H:i" }}

{% if perms.webapp.change_event %} {% trans "UpdateBtn" %} {% endif %} {% if perms.webapp.delete_event %} {% trans "DeleteBtn" %} {% endif %}
{% if user in event.users.all %}

{% trans "YouAreAlreadyParticipatingInThisEvent" %}

{% else %} {% if user.profile.gender and user.profile.birth_date and user.profile.phone_number %} {% trans "ParticipateBtn" %} {% else %}

{% trans "YouNeedTtoFillOutYourProfile" %}

{% endif %} {% endif %} {% if perms.webapp.can_see_all_user_in_event %} {% trans "ParticipateListBtn" %} {% endif %}
{% trans "BackBtn" %}
{% endblock %}