{% extends 'base.html' %} {% block title %}nbsp.space - Dashboard{% endblock %} {% block content %}
{% if current_user and current_user.is_authenticated and first_login %} {% endif %} {% include 'components/db_health_alert.html' %} {% if space_open_duration %} {% endif %} {% if garbage_tomorrow %} {% endif %} {% if garbage_missing_types %} {% endif %}
{% if current_user and current_user.is_authenticated and current_user.favorites %}

Favoriten

{% for favorite_url in current_user.favorites %} {% for link in all_links %} {% if link.url == favorite_url %} {% include 'components/tile.html' %} {% endif %} {% endfor %} {% endfor %}
{% endif %}
{% for link in all_links %} {% include 'components/tile.html' %} {% endfor %}
{% for category, links in categories.items() %} {% include 'components/category_section.html'%} {% endfor %}
{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}