summaryrefslogtreecommitdiff
path: root/arduino_blog/templates
diff options
context:
space:
mode:
Diffstat (limited to 'arduino_blog/templates')
-rw-r--r--arduino_blog/templates/dashboard.html23
1 files changed, 23 insertions, 0 deletions
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%}
+ <link rel="stylesheet" href="{{ URL_ROOT }}/static/yaksh/css/dashboard.css" type="text/css" />
+{% endblock %}
+{% block content %}
+{% if success %}
+ <center>
+ <div class="alert alert-success" role="alert">
+ <strong> {{ msg }} </strong>
+ </div>
+ <!-- <a href="{{URL_ROOT}}/exam/"> Home </a> -->
+ </center>
+{% else %}
+ {% if msg %}
+ <center>
+ <div class="alert alert-warning" role="alert">
+ <strong> {{ msg }} </strong>
+ </div>
+ {% endif %}
+{% endif %}
+<br/>
+{% endblock content %}