From 841289742d6c89b8a2eb30cea721f46b2389b862 Mon Sep 17 00:00:00 2001 From: CruiseDevice Date: Wed, 24 Oct 2018 16:55:02 +0530 Subject: Sbhs templates --- sbhs/templates/dashboard/fetch_logs.html | 58 ++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 sbhs/templates/dashboard/fetch_logs.html (limited to 'sbhs/templates/dashboard/fetch_logs.html') diff --git a/sbhs/templates/dashboard/fetch_logs.html b/sbhs/templates/dashboard/fetch_logs.html new file mode 100644 index 0000000..8f870c5 --- /dev/null +++ b/sbhs/templates/dashboard/fetch_logs.html @@ -0,0 +1,58 @@ +{% extends 'dashboard/dashboard_index.html' %} +{% load staticfiles %} +{% load custom_filter %} +{% block title %} + Fetch Logs +{% endblock %} +{% block headerfiles %} + + + + + + +{% endblock %} +{% block main %} +
+

Filter Log files

+
+
+
+ {% csrf_token %} + {{form.as_p}} +
+
+
+ +
+ + + + + + + + + + {% for experiment in experiments %} + + + + + + + {% endfor %} + +
Sl.NoUserFilename
{{forloop.counter}}{{experiment.slot.user.get_full_name}}{{experiment.log}}
+
+ +{% endblock %} \ No newline at end of file -- cgit