{% extends "base.html" %} {% block title %}Figma screens - {{ project.name }}{% endblock %} {% block content %} {% if not screens %}

No screens

Run an audit to import the Figma screens.

{% else %}
{% for s in screens %}
{% if s.image_path %} {{ s.name }} {% else %}
No image
{% endif %}
{{ s.name }}
{{ s.width | int }}x{{ s.height | int }} {% if s.mapped_route %} {{ s.mapped_route }} {% endif %}
{{ s.status }} {% if s.status == 'current' %} {% elif s.status == 'obsolete' %} {% endif %}
{% endfor %}
{% endif %} {% endblock %}