diff options
Diffstat (limited to 'templates/conference')
-rw-r--r-- | templates/conference/sponsors.html | 6 | ||||
-rw-r--r-- | templates/conference/talks.html | 2 | ||||
-rw-r--r-- | templates/conference/talks_tutorials.html | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/templates/conference/sponsors.html b/templates/conference/sponsors.html index 73f7ce8..2afdc53 100644 --- a/templates/conference/sponsors.html +++ b/templates/conference/sponsors.html @@ -5,19 +5,19 @@ <h2>Sponsors</h2> <br> <table> -<tr><td><img src="{{ STATIC_URL }}images/enthought_logo.png" width=275> +<tr><td><img src="/static/images/enthought_logo.png" width=275> <td><p align="justify"><a href="http://www.enthought.com/" target=_blank>Enthought Inc.</a> is a software company based in Austin, Texas, USA that develops scientific computing solutions using primarily the Python programming language. It is best known for the early development and maintenance of the <a href="http://scipy.org/" target=_blank>SciPy</a> library of mathematics, science, and engineering algorithms and for its Python for scientific computing distribution <a href="https://www.enthought.com/products/canopy/" target=_blank>Enthought Canopy</a> (formerly EPD). </table> <table> -<tr><td><img src="{{ STATIC_URL }}images/mhrd_logo.png" width=275> +<tr><td><img src="/static/images/mhrd_logo.png" width=275> <td>The <a href="http://fossee.in/">FOSSEE project</a> undertaken by IIT Bombay is funded by <a href="http://mhrd.gov.in/">Ministry of Human Resource Development(Govt. of India)</a> under National Mission on Education through ICT </table> <hr> <h2>Orgranizers</h2> <table> -<tr><td><img src="{{ STATIC_URL }}images/fossee.jpg" height=100 width=275> +<tr><td><img src="/static/images/fossee.jpg" height=100 width=275> <td>Annual SciPy India conference is organized by the team members of <a href="http://fossee.in/">FOSSEE</a> project. For any queries you may writes us at info[at]fossee[dot]in </table> diff --git a/templates/conference/talks.html b/templates/conference/talks.html index aa255d9..0a05576 100644 --- a/templates/conference/talks.html +++ b/templates/conference/talks.html @@ -8,7 +8,7 @@ <th>Title <th>Speaker {% for talk in talks %} -<tr><td><a href="{{ URL_ROOT }}/details/{{ talk.id }}">{{ talk.title }}<td>{{ talk.speaker }} +<tr><td><a href="{% url 'conference:details' talk.id %}">{{ talk.title }}<td>{{ talk.speaker }} {% endfor %} </table> {% endblock %} diff --git a/templates/conference/talks_tutorials.html b/templates/conference/talks_tutorials.html index 15783f1..484c268 100644 --- a/templates/conference/talks_tutorials.html +++ b/templates/conference/talks_tutorials.html @@ -8,11 +8,11 @@ <p>List of Tutorials</p> -<image src="{{ STATIC_URL }}/images/ole.jpg"> +<image src="/static/images/ole.jpg"> <iframe src="http://urtalk.kpoint.com/kapsule/gcc-7f6d80fa-7e37-4693-a9c3-08eaa23cfd22/v1/embedded?size=M" allowFullScreen webkitallowFullScreen mozallowFullScreen width="616" height="407" rel="nofollow"> </iframe> -<a href="{{ STATIC_URL }}/slides/geoprocessing.zip">Download Slides</a> +<a href="/static/slides/geoprocessing.zip">Download Slides</a> {% endblock %} |