Files @ 14870dd5b0ca
Branch filter:

Location: symposion_app/symposion/templates/schedule/schedule_list.html

James Tauber
removed old facebox reference
{% extends "site_base.html" %}

{% load i18n %}

{% block head_title %}Presentation Listing{% endblock %}

{% block body %}
    {% for presentation in presentations %}
        <div class="row">
            <div class="span8 well">
                <h3>{{ presentation.title }}</h3>
                <h4>{{ presentation.speaker }} in {{ presentation.proposal.track }}</h4>
                <p>
                    {{ presentation.description }}
                </p>
            </div>
        </div>
    {% endfor %}
{% endblock %}