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

{% trans "Welcome to ephios!" %}

{% with request.user|confirmed_shifts as confirmed_shifts %} {% if confirmed_shifts|length > 0 %}
{% trans "Your upcoming events" %}
{% endif %} {% endwith %} {% with request.user|shifts_needing_disposition as shifts %} {% if shifts|length > 0 %}
{% trans "Events with requested participations" %}
{% endif %} {% endwith %} {% include "core/fragments/approve_consequences.html" %} {% endblock %}