aboutsummaryrefslogtreecommitdiff
path: root/lava_scheduler_app/templates/lava_scheduler_app
diff options
context:
space:
mode:
authorRĂ©mi Duraffort <remi.duraffort@linaro.org>2018-02-05 09:52:45 +0100
committerSenthil Kumaran Shanmugasundaram <senthil.kumaran@linaro.org>2018-04-19 04:00:44 +0000
commit578fcb654cfa3e2fbd6a16331ed0ad2613b05757 (patch)
tree505dcccc2684c358a4de42615d57aee5c2787ee1 /lava_scheduler_app/templates/lava_scheduler_app
parent7956bac2f462d2bd0e8c797a36843123aa060fe8 (diff)
Add a page that list all device-types
Allows to have one url to point users at. Change-Id: I04d2c1e18a19e932e6581227cd57e4640e19ae93
Diffstat (limited to 'lava_scheduler_app/templates/lava_scheduler_app')
-rw-r--r--lava_scheduler_app/templates/lava_scheduler_app/alldevice_types.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/lava_scheduler_app/templates/lava_scheduler_app/alldevice_types.html b/lava_scheduler_app/templates/lava_scheduler_app/alldevice_types.html
new file mode 100644
index 000000000..951b1060f
--- /dev/null
+++ b/lava_scheduler_app/templates/lava_scheduler_app/alldevice_types.html
@@ -0,0 +1,14 @@
+{% extends "layouts/content.html" %}
+{% load django_tables2 %}
+
+{% block content %}
+
+<h2>Device types</h2>
+
+{% render_table dt_table %}
+
+{% endblock %}
+
+{% block scripts %}
+<script type="text/javascript" src="{{ STATIC_URL }}lava_scheduler_app/js/tables.min.js"></script>
+{% endblock %}