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

{{ project.name }}

{% match project.description %} {% when Some with (desc) %}

{{ desc }}

{% when None %} {% endmatch %}

Repository: {{ project.repository_url }}

Created: {{ project.created_at.format("%Y-%m-%d %H:%M") }}

{% if is_admin %}
{% endif %}

Jobsets

{% if is_admin %}
Add Jobset
{% endif %} {% if jobsets.is_empty() %}
No jobsets configured
{% if is_admin %}
Add a jobset above to start evaluating this project.
{% endif %}
{% else %}
{% for j in jobsets %} {% endfor %}
NameExpressionFlakeEnabledInterval
{{ j.name }} {{ j.nix_expression }} {% if j.flake_mode %}Yes{% else %}No{% endif %} {% if j.enabled %}Yes{% else %}No{% endif %} {{ j.check_interval }}s
{% endif %}

Recent Evaluations

{% if recent_evals.is_empty() %}
No evaluations yet for this project.
{% else %}
{% for e in recent_evals %} {% endfor %}
CommitStatusTime
{{ e.commit_short }} {{ e.status_text }} {{ e.time }}
{% endif %} {% endblock %} {% block scripts %} {% if is_admin %} {% endif %} {% endblock %}