diff options
author | hardythe1 | 2013-10-09 15:00:43 +0530 |
---|---|---|
committer | hardythe1 | 2013-10-09 15:00:43 +0530 |
commit | c02e32aa54933e386819cf3928ef02963c32b278 (patch) | |
tree | 6dfff16012d55a53fe9f33899e797a07e61fa030 /templates/conference/talks.html | |
download | SciPy2012-c02e32aa54933e386819cf3928ef02963c32b278.tar.gz SciPy2012-c02e32aa54933e386819cf3928ef02963c32b278.tar.bz2 SciPy2012-c02e32aa54933e386819cf3928ef02963c32b278.zip |
intializing repo with all files
Diffstat (limited to 'templates/conference/talks.html')
-rw-r--r-- | templates/conference/talks.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/conference/talks.html b/templates/conference/talks.html new file mode 100644 index 0000000..aa255d9 --- /dev/null +++ b/templates/conference/talks.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block content %} + + +<h3>List of Talks</h3> +<table> +<th>Title +<th>Speaker +{% for talk in talks %} +<tr><td><a href="{{ URL_ROOT }}/details/{{ talk.id }}">{{ talk.title }}<td>{{ talk.speaker }} +{% endfor %} +</table> +{% endblock %} + |