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

Projects

{% if is_admin %}

New Project (Setup Wizard)

Quick create (no probe)
{% endif %} {% if projects.is_empty() %}
No projects yet
{% if is_admin %}
Create a project using the button above to get started.
{% else %}
Projects will appear here once an administrator creates them.
{% endif %}
{% else %}
{% for p in projects %} {% endfor %}
NameRepositoryCreated
{{ p.name }} {{ p.repository_url }} {{ p.created_at.format("%Y-%m-%d %H:%M") }}
{% if total_pages > 1 %} {% endif %} {% endif %} {% endblock %} {% block scripts %} {% if is_admin %} {% endif %} {% endblock %}