From df264aadde958473d500b1ad55418ce6ac8fea24 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sun, 1 Mar 2020 23:18:24 +0530 Subject: added dashboard file --- arduino_blog/templates/dashboard.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 arduino_blog/templates/dashboard.html (limited to 'arduino_blog/templates') diff --git a/arduino_blog/templates/dashboard.html b/arduino_blog/templates/dashboard.html new file mode 100644 index 0000000..a4528a8 --- /dev/null +++ b/arduino_blog/templates/dashboard.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} + +{% block css%} + +{% endblock %} +{% block content %} +{% if success %} +
+ + +
+{% else %} + {% if msg %} +
+ + {% endif %} +{% endif %} +
+{% endblock content %} -- cgit