{% extends "base.html" %} {% block title %}Sraosha — Contracts{% endblock %} {% block breadcrumbs %}

Contracts

{{ contracts|length }} registered

{% endblock %} {% block content %}
{% if contracts %}
{% for c in contracts %}

{{ c.title }}

{{ c.contract_id }}

{% if not c.is_active %}Inactive{% endif %}
{% if c.description %}

{{ c.description }}

{% endif %}
{% if c.owner_team %}{{ c.owner_team }}{% endif %} {{ c.enforcement_mode }} {% if c.pass_rate is not none %}{{ c.pass_rate }}% · {{ c.total_runs }} runs{% else %}{{ c.total_runs }} runs{% endif %} {% if c.last_run_rel %}{{ c.last_run_rel }}{% endif %}
{% endfor %}
{% for c in contracts %} {% endfor %}
Contract Team Status Pass % Last run
{{ c.title }} {{ c.owner_team or "—" }} {% if c.status == "passing" %}Passing{% elif c.status == "failing" %}Failing{% else %}{% endif %} {% if c.pass_rate is not none %}{{ c.pass_rate }}%{% else %}—{% endif %} {{ c.last_run_rel or "—" }}
{% else %}

No contracts match.

Create a contract
{% endif %}
{% endblock %}