{%extends "base.html" %} {% load pagination_tags %} {% load tagging_tags %} {% block extra_head %} {% endblock %} {% block title %}Abstracts{% endblock %} {% block content %} {% autopaginate presentation_list %}

Presentations

{% if presentation_list %} {% for p in presentation_list %}

{{ p.title }} ({{ p.author }})

{{ p.abstract }}

{% if p.tags %}

Tags: {% tags_for_object p as tag_list %} {% for tag in tag_list %} {{ tag }} {% endfor %}

{% endif %}
Rate the Abstract

I have

interest in attending the presentation.

{% endfor %} {% paginate %} {% else %}

No presentations are available.

{% endif %} {% endblock %}