From 639cd5db77064c275253828780c17ae59551d95c Mon Sep 17 00:00:00 2001 From: maxbr Date: Fri, 29 Jul 2016 12:43:43 +0200 Subject: import pharos dashboard code JIRA: RELENG-12 The last commit was missing some JS/CSS dependencies of the site. This happened because they are in folders that are named 'build' or 'dist'. This commit adds a bower.json file, that specifies dependencies. Dependencies can now be installed by running 'bower install' in the dashboard/static folder. Change-Id: I054f319c66771f767e97711cb678d79d3bd6bee4 Signed-off-by: maxbr --- pharos-dashboard/templates/tables/ci_pods.html | 59 ++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 pharos-dashboard/templates/tables/ci_pods.html (limited to 'pharos-dashboard/templates/tables/ci_pods.html') diff --git a/pharos-dashboard/templates/tables/ci_pods.html b/pharos-dashboard/templates/tables/ci_pods.html new file mode 100644 index 0000000..3889664 --- /dev/null +++ b/pharos-dashboard/templates/tables/ci_pods.html @@ -0,0 +1,59 @@ +{% 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