{% extends "base.html" %} {% block title %}My Talks{% endblock %} {% block content %}

My Talks

{% if talk_list %}

List of the talks I have submitted.

{% for talk in talk_list %} {% endfor %}
Title Contact Topic Duration Audience type
{{ talk.title }} {{ talk.contact }} {{ talk.topic }} {{ talk.duration }} {{ talk.get_audience_display }}
{% else %}

No talks

{% endif %} {% endblock content %}