{% extends "base.html" %} {% block css %} {% endblock %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
Favorites

{% if current_user.favorites %} {% for favorite in current_user.favorites %} {% endfor %} {% else %} No favorites yet.
Click the button above or star on a company dashboard to add favorites. {% endif %}
Profile

{% if current_user.is_authenticated %}
Welcome, {{ current_user.username }}
{% else %}

Sign up today and get started

{% endif %}
{% if current_user.is_authenticated and current_user.get_id() == "1" %} {% endif %}
{% endblock %}