From 971df12c95bfa17459d042857e5200f4a7f60cd4 Mon Sep 17 00:00:00 2001 From: akhilbatra898 Date: Tue, 25 Jul 2017 03:30:18 +0530 Subject: Implement benchmark running and logging the output - Run benchmark by adding new tasks - Modify Task model to have log as log files - Add new urls for respective views - Module for running benchmarks in background - Updating status of tasks - Listing and detailed log of all tasks - Add corresponding html templates Change-Id: I244d1bb74949eeb470c738363f6917191e0f052d Signed-off-by: akhilbatra898 --- qtip/web/templates/bench/run.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 qtip/web/templates/bench/run.html (limited to 'qtip/web/templates/bench/run.html') diff --git a/qtip/web/templates/bench/run.html b/qtip/web/templates/bench/run.html new file mode 100644 index 00000000..8eaa251b --- /dev/null +++ b/qtip/web/templates/bench/run.html @@ -0,0 +1,15 @@ +{% extends 'bench/base.html' %} +{% block content %} +
+

Repos

+ {% for repo in repos %} +
  • {{ repo.name }}
  • + {% endfor %} +
    +
    {% csrf_token %} + {{ form }} +
    + +
    +
    +{% endblock %} \ No newline at end of file -- cgit 1.2.3-korg