From 2b39e20030dd549638a0c2857e04910d01ba5bca Mon Sep 17 00:00:00 2001 From: zymist Date: Tue, 16 Apr 2019 10:48:40 -0800 Subject: [PATCH] [#138] Template for event page rough --- .../profileEditor/profileEvents.html | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 IAIDSWebsite/profileEditor/templates/profileEditor/profileEvents.html diff --git a/IAIDSWebsite/profileEditor/templates/profileEditor/profileEvents.html b/IAIDSWebsite/profileEditor/templates/profileEditor/profileEvents.html new file mode 100644 index 0000000..b358c75 --- /dev/null +++ b/IAIDSWebsite/profileEditor/templates/profileEditor/profileEvents.html @@ -0,0 +1,106 @@ +{% extends "main_template.html" %} +{% block headerInclude %} +{% load static %} + + + + + + +{% endblock %} +{% block middleColumn%} + +
+ +
+
+

Jobs Registurred For

+
+
+
+
+ + + + + + + + + + + {% for job in allSignOutJobs %} + + + + + + + {% endfor %} + + + + + + + + + +
idJob TitleDate/TimeReject
{{job.id}}{{job.name}}{{job.startdate}} + {% if job.startdate != job.enddate %} + - {{job.enddate}} + {% endif %} +
+ {{job.starttime}} - {{job.endtime}} +
idJob TitleDate/TimeReject
+
+
+ + +{% endblock %} + +{% block sideBar %} + +{% endblock %} \ No newline at end of file