From 0bc9f7db2b82bd446e79bdefb03a20516fe3d8b8 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 25 Apr 2022 07:15:29 +0300 Subject: UI: Add index page and basic styling Add template(s) for the index page and some basic styling to get started with. --- qc_app/templates/base.html | 19 +++++++++++++++++++ qc_app/templates/index.html | 27 +++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 qc_app/templates/base.html create mode 100644 qc_app/templates/index.html (limited to 'qc_app/templates') diff --git a/qc_app/templates/base.html b/qc_app/templates/base.html new file mode 100644 index 0000000..67ba6b5 --- /dev/null +++ b/qc_app/templates/base.html @@ -0,0 +1,19 @@ + + + + + + + + QC: {%block title%}{%endblock%} + + + {%block css%}{%endblock%} + + + + {%block contents%}{%endblock%} + + {%block javascript%}{%endblock%} + + diff --git a/qc_app/templates/index.html b/qc_app/templates/index.html new file mode 100644 index 0000000..ec45605 --- /dev/null +++ b/qc_app/templates/index.html @@ -0,0 +1,27 @@ +{%extends "base.html"%} + +{%block title%}Upload File{%endblock%} + +{%block contents%} +

upload file

+ +
+
+ file type + + + + + + +
+ + + + + +
+{%endblock%} -- cgit v1.2.3