{% extends "base.html" %} {% load logentries %} {% load user_extras %} {% load event_extras %} {% load cache %} {% load i18n %} {% load static %} {% block title %} {% translate "Home" %} {% endblock %} {% block javascript %} {% endblock %} {% block content %}

{% translate "Welcome to ephios!" %}

{% with request.user|confirmed_participations as confirmed_participations %}
{% translate "Your upcoming events" %}
{% endwith %} {% with request.user|shifts_needing_disposition as shifts %} {% if shifts|length > 0 %}
{% translate "Events with requested participations" %}
{% endif %} {% endwith %} {% include "core/fragments/approve_consequences.html" %} {% include "core/fragments/pending_consequences.html" %} {% with logentries=request.user|visible_logentries %} {% if logentries %}
{% translate "Edit history" %} {% translate "View everything" %}
{% include 'modellogging/logentry_grouped_list.html' with logentries=logentries %}
{% endif %} {% endwith %} {% homepage_plugin_content request as plugin_content %} {% for item in plugin_content %}
{{ item }}
{% endfor %} {% endblock %}