project/templates/talk/list-all-talks.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 11 Dec 2009 17:31:38 +0530
changeset 58 51217f07e73a
parent 54 351ca8d74da8
child 59 1229a47c63ea
permissions -rw-r--r--
Changed style of time slots of days.

{% extends "base.html" %}

{% block title %}My Talks{% endblock %}

{% block content %}
<h1>My Talks</h1>
{% if talk_list %}
<h3>List of the talks I have submitted.</h3>

<table class="list-talks">
  <tr>
    <th>Title</th>
    <th>Speaker</th>
    <th>Topic</th>
    <th>Duration</th>
    <th>Audience type</th>
  </tr>
  {% for talk in talk_list %}
    <tr>
      <td>{{ talk.title }}</td>
      <td>{{ talk.speaker.get_full_name }}</td>
      <td>{{ talk.topic }}</td>
      <td>{{ talk.duration }}</td>
      <td>{{ talk.audience }}</td>
    </tr>
  {% endfor %}
</table>
{% else %}
<h2>No talks</h2>
{% endif %}
{% endblock content %}