{% extends "base.html" %} {% load i18n static auth %} {% block title %}{% trans "Start" %} · {{ block.super }}{% endblock %} {% block content %}
{% has_perm 'recruitment.search_execution' user as can_search_execution %} {% if can_search_execution %}
{% endif %} {% has_perm 'subjects.view_subject' user as can_view_subject %} {% has_privacy_level 2 user as has_privacy_level_2 %} {% if can_view_subject and has_privacy_level_2 %}
{% endif %} {% if user.is_staff or user.is_superuser %}
{% endif %}
{% endblock %}