{% extends "base.html" %}
{% load static %}
{% block head_title %}{{ block.super }} :: {{repo.owner}} / {{repo.name}} / {{branch}} {% endblock %}
{% block page_title %}
{{repo.owner}}
/ {{repo.name}}
/ {{branch}}
{% endblock %}
{% block content %}
Info
Statistics
- Builds: {{statistics.builds}}
- Reports: {{statistics.reports}}
- Test classes: {{statistics.classes}}
- Test cases: {{statistics.cases}}
- Last tested: #{{statistics.last_report_build}} ({{statistics.last_report_date|date:"Y-m-d H:i:s"}})
- Most recent pass: {% if not statistics.last_pass_build is None %}#{{statistics.last_pass_build}} ({{statistics.last_pass_date|date:"Y-m-d H:i:s"}}){% else %}N/A{% endif %}
- Most recent failure: {% if not statistics.last_fail_build is None %}#{{statistics.last_fail_build}} ({{statistics.last_fail_date|date:"Y-m-d H:i:s"}}){% else %}N/A{% endif %}
Trends
Reports
Test classes
{% endblock %}