From 3b5ef3b0a88247eeafeee878de528aad71f9fd4b Mon Sep 17 00:00:00 2001 From: maxbr Date: Fri, 19 Aug 2016 17:10:31 +0200 Subject: Split the dashboard into different apps, add tests JIRA: RELENG-12 Signed-off-by: maxbr --- .../templates/dashboard/ci_pods.html | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 tools/pharos-dashboard/templates/dashboard/ci_pods.html (limited to 'tools/pharos-dashboard/templates/dashboard/ci_pods.html') diff --git a/tools/pharos-dashboard/templates/dashboard/ci_pods.html b/tools/pharos-dashboard/templates/dashboard/ci_pods.html new file mode 100644 index 00000000..d3e5ff62 --- /dev/null +++ b/tools/pharos-dashboard/templates/dashboard/ci_pods.html @@ -0,0 +1,58 @@ +{% extends "dashboard/table.html" %} +{% load staticfiles %} + +{% block table %} + + + Name + Slave Name + Status + Installer + Scenario + Branch + Job + + + + {% for pod in ci_pods %} + + + {{ pod.name }} + + + {{ pod.slavename }} + + + {{ pod.status }} + + + {{ pod.last_job.installer }} + + + {{ pod.last_job.scenario }} + + + {{ pod.last_job.branch }} + + {{ pod.last_job.name }} + + + {% endfor %}` + +{% endblock table %} + + +{% block tablejs %} + +{% endblock tablejs %} \ No newline at end of file -- cgit 1.2.3-korg