From 2364c5886b6e4fa34355d0e300ebd9aae0ba8ffc Mon Sep 17 00:00:00 2001 From: akhilbatra898 Date: Tue, 8 Aug 2017 23:09:51 +0530 Subject: Add basic ui - Repos Listing - Creation and updation - Running Benchmarking - Listed and detailed view of logs - Add django management command to import frontend dependencies Change-Id: If6f7dbc1fc18b022d9dda7a76f76dfee1c110450 Signed-off-by: akhilbatra898 --- qtip/web/templates/bench/task_list.html | 93 ++++++++++++++++++++++++++------- 1 file changed, 74 insertions(+), 19 deletions(-) (limited to 'qtip/web/templates/bench/task_list.html') diff --git a/qtip/web/templates/bench/task_list.html b/qtip/web/templates/bench/task_list.html index 188d6b81..074483ab 100644 --- a/qtip/web/templates/bench/task_list.html +++ b/qtip/web/templates/bench/task_list.html @@ -1,22 +1,77 @@ {% extends 'bench/base.html' %} {% block content %} -
-

Tasks Log

- - - - - - - {% for task in object_list %} - - - - - - - - {% endfor %} -
RepoStatusStart TimeEnd TimeRun time
{{ task.repo }}{{ task.get_status_display }}{{ task.start_time }}{{ task.end_time }}{{ task.run_time }}
- + + + +
+
+

+ Tasks Log +

+ +
+
+
+
+
+ + + + + + + + + + + {% for task in object_list %} + + + + + + + + {% endfor %} + + + + + + + + + + +
RepoStatusStart TimeEnd TimeRun time
{{ task.repo }}{{ task.get_status_display }}{{ task.start_time }}{{ task.end_time }}{{ task.run_time }}
RepoStatusStart TimeEnd TimeRun time
+
+ + + + + + + + + + + + + + + + + + {% endblock %} \ No newline at end of file -- cgit 1.2.3-korg