blob: 5293418533b72e9a4c7cd4d375aca7053ee95a40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends 'base.html' %}
{% block header %}
<h1> SciPy India Conference 2016 </h1>
{% endblock %}
{% block content %}
<p> Your feedback will help us improve our services. Thank you for your time. </p>
<div>
<div class="embed-responsive embed-responsive-16by9" style="width:100%;height:2000px">
<iframe class="embed-responsive-item" src="https://docs.google.com/forms/d/e/1FAIpQLSc58NmRJFBtfdrkbDXCTcIX8IszHhqeOO5vPlmyLgxGJLJ8Yw/viewform"></iframe>
</div>
<br>
<a class="btn" style="float:right" href = "{% url 'certificate:scipy_download_2016' %}">Click here to download certificate</a>
</div>
{% endblock %}
|