{% extends "base.html" %} {% block title %}Dashboard - flanner{% endblock %} {% block content %}
{{ total_projects }}
Total Projects
{{ total_plans }}
Plan Files
{{ updated_this_week }}
Updated this week

Projects

{% if projects %}
{% for project in projects %}

{{ project.name }}

{{ plan_counts.get(project.id, 0) }} files

{{ project.description or 'No description' }}

{{ project.plan_directory }} {{ project.created_at.strftime('%Y-%m-%d') if project.created_at else '-' }}
{% endfor %}
{% if total_projects > projects|length %}

all {{ total_projects }} projects →

{% endif %} {% else %}
{% include "_empty_glyph.html" %}

No Projects Yet

Get started by creating your first project.

Create Project
{% endif %}
{% if recent_activity %}

Recent Activity

{% for item in recent_activity %}
{{ item.plan_file.name }} v{{ item.plan_file.current_version }}
in {{ item.project.name }} {{ item.updated_at|relative_time if item.updated_at }}
{% endfor %}
{% endif %}
{% endblock %}