equal
deleted
inserted
replaced
|
1 {% extends "base.html" %} |
|
2 |
|
3 {% block title %}Talk Listing{% endblock %} |
|
4 |
|
5 {% block content %} |
|
6 <h1>Talks</h1> |
|
7 <h3>Accepted talks list is not out yet. This page will be updated soon.</h3> |
|
8 <p><strong>Showing {{ count }} of {{ count }}</strong></p> |
|
9 |
|
10 <ul class="plain"> |
|
11 {% for object in object_list %} |
|
12 <li> |
|
13 <ul class="plain" style="margin-bottom:1em;"> |
|
14 <li><a href="/talks/talk/{{object.id }}/">{{ object.title }}</a></li> |
|
15 <li><strong>{{ object.speaker.get_profile.fullname }}</strong></li> |
|
16 <li>{{ object.abstract }}</li> |
|
17 </ul> |
|
18 </li> |
|
19 {% endfor %} |
|
20 </ul> |
|
21 {% endblock content %} |
|
22 |