project/templates/talk/talk_list.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 30 Oct 2009 15:09:12 +0530
changeset 1 fda1c66b25f9
child 123 d4799b7159e4
permissions -rw-r--r--
Added all the files from kiwipycon and the changes made for SciPy.in.

{% extends "base.html" %}

{% block title %}Talk Listing{% endblock %}

{% block content %}
<h1>Talks</h1>
<h3>Accepted talks list is not out yet. This page will be updated soon.</h3>
<p><strong>Showing {{ count }} of {{ count }}</strong></p>

<ul class="plain">
{% for object in object_list %}
<li>
  <ul class="plain" style="margin-bottom:1em;">
      <li><a href="/talks/talk/{{object.id }}/">{{ object.title }}</a></li>
      <li><strong>{{ object.speaker.get_profile.fullname }}</strong></li>
      <li>{{ object.abstract }}</li>
  </ul>
</li>
{% endfor %}
</ul>
{% endblock content %}