{% extends "base.html" %} {% block title %}Dashboard - figma-audit{% endblock %} {% block content %} {% if not projects %}

No projects

Create your first project to start an audit.

New project
{% else %}
{{ projects | length }}
Projects
{{ total_runs }}
Total runs
{{ total_critical }}
Open critical
{{ total_fixed }}
Fixed

Projects

{% for p in projects %} {% endfor %}
Project App URL Last run Status
{{ p.name }} {{ p.app_url or '-' }} {{ p.last_run_date or 'Never' }} {% if p.last_run_status %} {{ p.last_run_status }} {% else %} - {% endif %} View
{% endif %} {% endblock %}