{% extends "default.html" %} {% block title %}Dashboard | Echo Tracker{% endblock %} {% set active = "dashboard" %} {% block content %} Dashboard {% if session.get("username") %} {% if bugs %} Endpoints with reported bugs {% endif %} {% for bug in bugs %} {{ bug.application.name }} - {{ bug.name }} {% endfor %} Create an app {% endif %} {% for app in apps %} {{ app.name }} {% endfor %} {% endblock %}