diff options
author | 2016-08-22 14:13:06 +0000 | |
---|---|---|
committer | 2016-08-22 14:13:06 +0000 | |
commit | c121ae90322dac5cf72e98450c89ff7e5131b20c (patch) | |
tree | 51b6c58e102777649940686915da48aab5971fac /tools/pharos-dashboard/templates/dashboard/ci_pods.html | |
parent | e4649cce49068942ef754746fdd5bc75636075de (diff) | |
parent | 3b5ef3b0a88247eeafeee878de528aad71f9fd4b (diff) |
Merge "Split the dashboard into different apps, add tests"
Diffstat (limited to 'tools/pharos-dashboard/templates/dashboard/ci_pods.html')
-rw-r--r-- | tools/pharos-dashboard/templates/dashboard/ci_pods.html | 58 |
1 files changed, 58 insertions, 0 deletions
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 %} + <thead> + <tr> + <th>Name</th> + <th>Slave Name</th> + <th>Status</th> + <th>Installer</th> + <th>Scenario</th> + <th>Branch</th> + <th>Job</th> + </tr> + </thead> + <tbody> + {% for pod in ci_pods %} + <tr> + <th> + <a target='_blank' href={{ pod.url }}>{{ pod.name }}</a> + </th> + <th> + <a target='_blank' href={{ pod.slaveurl }}>{{ pod.slavename }}</a> + </th> + <th style="background-color:{{ pod.status_color }}"> + {{ pod.status }} + </th> + <th {{ pod.last_job.blink }}> + {{ pod.last_job.installer }} + </th> + <th {{ pod.last_job.blink }}> + {{ pod.last_job.scenario }} + </th> + <th {{ pod.last_job.blink }}> + {{ pod.last_job.branch }} + </th> + <th><a {{ pod.last_job.blink }} style="color:{{ pod.last_job.color }}" + target='_blank' + href={{ pod.last_job.url }}>{{ pod.last_job.name }}</a> + </th> + </tr> + {% endfor %}` + </tbody> +{% endblock table %} + + +{% block tablejs %} + <script type="text/javascript"> + $(document).ready(function () { + $('#table').DataTable({ + columnDefs: [ + {type: 'status', targets: 2} + ], + "order": [[2, "asc"]] + }); + }); + </script> +{% endblock tablejs %}
\ No newline at end of file |