{% extends "saasy/base.html" %} {% block title %}Saasy - Home{% endblock %} {% block content %}
{% include "./includes/settings_menu.html" with active="dashboard" %}

Organizations

{% for org in organizations %}
Card image cap
{{ org.name }}

Some quick example text to build on the card title and make up the bulk of the card's content.

{% endfor %}

Projects

{% for project in projects %}
Card image cap
{{ project.name }}

Some quick example text to build on the card title and make up the bulk of the card's content.

{% endfor %}

Teams

{% for team in teams %}
Card image cap
{{ team.name }}

Some quick example text to build on the card title and make up the bulk of the card's content.

{% endfor %}
{% endblock %}