{% extends "layout_bs4.html" %} {% from "overview/utils.html" import institute_macro %} {% block title %} {{ super() }} - Institutes {% endblock %} {% block top_nav %} {{ super() }} {% endblock %} {% block content_main %}
{% for institute in institutes if institute.internal_id in current_user.institutes %} {{ institute_macro(institute, current_user) }} {% endfor %} {% for institute in institutes if institute.internal_id not in current_user.institutes %} {{ institute_macro(institute, current_user) }} {% endfor %}
{% endblock %}