{% extends "base.html" %} {% block title %}{{ locale.my_events }} - {{ locale.app_name }}{% endblock %} {% block head_js %} {% endblock %} {% block content %}

{{ locale.my_events }}

{% if count > 0 %}
{% for event in events %}
{% endfor %}
{{ locale.event_title }} {{ locale.event_date }} {{ locale.event }} {{ locale.status }} {{ locale.actions }} {{ locale.date }}
{% if event.event_title == '' %} {% set str = random('abasdjoohodneruiweosndweiqbdwe') %} {% else %} {{ event.event_title }} {% endif %} {{ event.event_date }} {{ event.event }} {% if event.status == 0 %} {{ locale.in_review }} {% elseif event.status == 1 %} {{ locale.event_approved }} {% elseif event.status == 2 %} {{ locale.blocked }} {% elseif event.status == 3 %} {{ locale.draft }} {% endif %}
{% for attachment in events_attachments %} {% if attachment.event_id == event.event_id %} {% if attachment.filename is not null or attachment.filename is not empty %} {% endif %} {% endif %} {% endfor %}
{{ event.time_created|date('d-m-Y \\a\\t H:i') }}
{{ pagination|raw }}
{% else %} {{ locale.no_event_found }} {% endif %}
{% endblock %} {% block js %} {% endblock %}