aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/templates/status/job.html.j2
blob: 7915ff2f1e87533ffe9ac8aeba6d103210c5740e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html.j2" %}
{% block title %}Job {{ job.name }}{% endblock %}
{% block content %}
    {{ two_level_breadcrumb('Job', job.name) | indent(width=4) }}

    {{ pod_parent_summary('Job', job.name, job.failed_pods, job.pods) }}

    <section class="section">
      {{ description(job.k8s) | indent(width=6) }}

      {{ pods_container(job.pods, "Job") | indent(width=6) }}

    {{ events(job.events) }}
    </section>
{% endblock %}