{% 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 %} {% if can_export_subject %}
{% endif %}
{% if user.is_staff or user.is_superuser %}
{% endif %}
{% endblock %} {% block footer %} {% endblock %}