project/templates/talk/list-all-talks.html
changeset 54 351ca8d74da8
parent 53 cc2604e0333c
child 59 1229a47c63ea
equal deleted inserted replaced
53:cc2604e0333c 54:351ca8d74da8
    12     <th>Title</th>
    12     <th>Title</th>
    13     <th>Speaker</th>
    13     <th>Speaker</th>
    14     <th>Topic</th>
    14     <th>Topic</th>
    15     <th>Duration</th>
    15     <th>Duration</th>
    16     <th>Audience type</th>
    16     <th>Audience type</th>
    17     <th>Abstract</th>
       
    18   </tr>
    17   </tr>
    19   {% for talk in talk_list %}
    18   {% for talk in talk_list %}
    20     <tr>
    19     <tr>
    21       <td>{{ talk.title }}</td>
    20       <td>{{ talk.title }}</td>
    22       <td>{{ talk.speaker.get_full_name }}</td>
    21       <td>{{ talk.speaker.get_full_name }}</td>
    23       <td>{{ talk.topic }}</td>
    22       <td>{{ talk.topic }}</td>
    24       <td>{{ talk.duration }}</td>
    23       <td>{{ talk.duration }}</td>
    25       <td>{{ talk.audience }}</td>
    24       <td>{{ talk.audience }}</td>
    26       <td>{{ talk.abstract }}</td>
       
    27     </tr>
    25     </tr>
    28   {% endfor %}
    26   {% endfor %}
    29 </table>
    27 </table>
    30 {% else %}
    28 {% else %}
    31 <h2>No talks</h2>
    29 <h2>No talks</h2>