{% extends "wafer/base.html" %} {% load i18n %} {% block title %}{% trans "Talk Types" %} - {{ WAFER_CONFERENCE_NAME }}{% endblock %} {% block content %}

{% trans 'Talk Types' %}

{% if object_list.count > 0 %}
{% for type in object_list %}
{{ type.name }}
{{ type.description }}
{% endfor %}
{% else %}

{% trans 'No talk types defined.' %}

{% endif %}
{% endblock %}