{% extends "base.html" %} {% load i18n static auth %} {% block title %}{% translate "Start" %} · {{ block.super }}{% endblock %} {% block content %}
{% has_perm 'appointments.view_current_appointments' user as can_view_current_appointments %} {% if can_view_current_appointments %}
{% endif %} {% if user.resource_set.exists %}
{% endif %} {% has_perm 'subjects.export_subject' user as can_export_subject %} {% has_privacy_level 2 user as has_privacy_level_2 %} {% if can_export_subject and has_privacy_level_2 %}
{% endif %}
{% if user.is_staff or user.is_superuser %}
{% endif %}
{% endblock %} {% block footer %} {% endblock %}