{% extends "_app_base.html" %} {% block title %}Projects — Issue Tracker{% endblock %} {% block content %}

Projects

Your issue-tracking workspaces

New project
{% if projects.is_empty() %}

No projects yet.

Create your first project
{% else %}
{% for p in projects %}
{{ p.name }}
{% if p.description.is_empty() %} No description {% else %} {{ p.description }} {% endif %}
Updated {{ p.updated_at.format("%Y-%m-%d") }}
{% endfor %}
{% endif %} {% endblock %}