{% extends "base.html" %} {% block title %}Dashboard - ASF TestArena{% endblock %} {% block content %}

Test Jobs

+ New Job
{% if jobs %} {% for job in jobs %}
{{ job.get_status_icon() }}

Job #{{ job.id }} - {{ job.branch_name }}

{{ job.submitted_at.strftime('%Y-%m-%d %H:%M') }} by {{ job.submitter.username }}

{% endfor %} {% else %}

No jobs yet

Submit your first test job to get started

{% endif %}

Job Details

Select a job

Click on a job from the list to view details

{% endblock %}