project/templates/talk/list-talks.html
author Kadambari Devarajan <kadambari.devarajan@gmail.com>
Fri, 26 Nov 2010 19:29:54 +0530
changeset 301 49b56af22f04
parent 230 9649b07aa4c8
permissions -rw-r--r--
Add a new page for Sponsors and all the boiler plate. Add responsibilities for each sponsor. Remove all the sponsor information from right hand menu.

{% 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>Contact</th>
    <th>Topic</th>
    <th>Duration</th>
    <th>Audience type</th>
  </tr>
  {% for talk in talk_list %}
    <tr>
      <td><u><a href="/{{ params.scope }}/edit-talk/{{ talk.id }}/">{{ talk.title }}</a></u></td>
      <td>{{ talk.contact }}</td>
      <td>{{ talk.topic }}</td>
      <td>{{ talk.duration }}</td>
      <td>{{ talk.get_audience_display }}</td>
    </tr>
  {% endfor %}
</table>
{% else %}
<h2>No talks</h2>
{% endif %}
{% endblock content %}