aboutsummaryrefslogtreecommitdiff
path: root/testmanager/testrunner/templates/testrunner/execute.html
diff options
context:
space:
mode:
Diffstat (limited to 'testmanager/testrunner/templates/testrunner/execute.html')
-rw-r--r--testmanager/testrunner/templates/testrunner/execute.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/testmanager/testrunner/templates/testrunner/execute.html b/testmanager/testrunner/templates/testrunner/execute.html
deleted file mode 100644
index dc46c8f..0000000
--- a/testmanager/testrunner/templates/testrunner/execute.html
+++ /dev/null
@@ -1,37 +0,0 @@
-{% extends 'testrunner/base.html' %}
-
-{% block maincontent %}
- <div class="row">
- <div class="col-lg-12">
-
- <form role="form">
-
- <div class="well">
-
- <div class="form-group">
- <label>Hardware</label>
-
- <select class="form-control">
- {% for each in hardware %}
- <option>{{ each }}</option>
- {% endfor %}
- </select>
- </div>
-
- <div class="form-group">
- <label>Hardware</label>
-
- <select class="form-control" disabled>
- {% for each in hardware %}
- <option>{{ each }}</option>
- {% endfor %}
- </select>
- </div>
-
- </div>
-
- </form>
-
- </div>
- </div>
-{% endblock %}