diff options
Diffstat (limited to 'project/templates')
-rw-r--r-- | project/templates/_menu.html | 5 | ||||
-rw-r--r-- | project/templates/talk/download-slides.html | 19 |
2 files changed, 24 insertions, 0 deletions
diff --git a/project/templates/_menu.html b/project/templates/_menu.html index d869067..470f9a8 100644 --- a/project/templates/_menu.html +++ b/project/templates/_menu.html @@ -1,6 +1,11 @@ <div id="left-inner"> <ul> <li><a href="/{{ params.scope }}/">Home</a></li> + <li> + <a href="{% url scipycon_download_slides params.scope %}"> + Download Slides <font color="red">(New)</font> + </a> + </li> <li><a href="/{{ params.scope }}/submit-registration/">Registration</a></li> <li> <ul> diff --git a/project/templates/talk/download-slides.html b/project/templates/talk/download-slides.html new file mode 100644 index 0000000..32ca1cb --- /dev/null +++ b/project/templates/talk/download-slides.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block title %}My Talks{% endblock %} + +{% block content %} +<h1>Slides for Download</h1> +<h2>Conference Talks</h2> +<p> + <a href="/static/files/conference-talks.zip"> + Click here to download + </a> +</p><br /> +<h2>Tutorials(Slides, circulate and other materials)</h2> +<p> + <a href="/static/files/tutorials.zip"> + Click here to download + </a> +</p> +{% endblock content %} |