{% 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 %}| 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") }} |