{% extends "base.html" %} {% block title %}Projects - circus{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Projects

{% if is_admin %}

Quick create

Probe repository

{% endif %} {% if projects.is_empty() %}
No projects yet
{% if is_admin %}
Create a project using the buttons above to get started.
{% else %}
Projects will appear here once an administrator creates them.
{% endif %}
{% else %}
{% for p in projects %} {% endfor %}
Name Description Repository Created Updated
{{ p.name }} {% match p.description %} {% when Some with (d) %} {{ d }} {% when None %} - {% endmatch %} {{ p.repository_url }} {{ p.created_at.format("%Y-%m-%d %H:%M") }} {{ p.updated_at.format("%Y-%m-%d %H:%M") }}
{% if total_pages > 1 %} {% endif %} {% endif %} {% endblock %} {% block scripts %} {% if is_admin %} {% endif %} {% endblock %}