diff options
author | CruiseDevice | 2018-08-20 14:34:36 +0530 |
---|---|---|
committer | CruiseDevice | 2018-08-20 14:40:32 +0530 |
commit | 77c37a0b372e5e43fc761a70599a945e9e48ef58 (patch) | |
tree | 5ee4112adbd3e066c75a47210613685e2c6ddd1f /sbhs/templates/pages/procedure.html | |
parent | ea0f3944ab5330bbde99fc22c9903f25a92ee98e (diff) | |
download | sbhs_server-77c37a0b372e5e43fc761a70599a945e9e48ef58.tar.gz sbhs_server-77c37a0b372e5e43fc761a70599a945e9e48ef58.tar.bz2 sbhs_server-77c37a0b372e5e43fc761a70599a945e9e48ef58.zip |
static and template files
Diffstat (limited to 'sbhs/templates/pages/procedure.html')
-rw-r--r-- | sbhs/templates/pages/procedure.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sbhs/templates/pages/procedure.html b/sbhs/templates/pages/procedure.html new file mode 100644 index 0000000..98343fd --- /dev/null +++ b/sbhs/templates/pages/procedure.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} +{% load staticfiles %} + +{% block content %} + +<div class="container"> + <div class="row"> + {% if user.is_authenticated %} + {#{% include 'account/sub_nav.html' %}#} + {% endif %} + <div class="span12"> + <h2>Procedure</h2> + <h4> + <strong>See the spoken tutorial on how to use SBHS virtual labs</strong> + </h4> + <center> + <div class="embed-responsive embed-responsive-16by9"> + <iframe width="500" height="300" src="https://www.youtube.com/embed/Ax7lYwQctog" frameborder="0" allowfullscreen></iframe> + </div> + </center><br> + <h4> + <strong>For more information please read the pdf</strong> + </h4> + <center> + <div class="embed-responsive embed-responsive-16by9"> + <iframe src="{% static 'data/procedure.pdf' %}" width="100%" height="900px"></iframe><br> + </div> + </center> + </div> + </div> +</div> +{% endblock %} |