Sorgente del template video/videoapp_list.html

{% extends "base1col.html" %}
{% load videoapp %}

{% block title %}{% if activity %}{{ activity|capfirst }} | {% endif %} Video {% endblock title %}

{% block extraheader %}
    <link rel="alternate" type="application/rss+xml" title="Canticorum Latest Video Feed" href="http://www.canticorum.it/video/feed/" />
{% endblock extraheader %}

{% block extrameta %}{% endblock extrameta %}

{% block content %}

<div class="span12">
	<h3>Video Canticorum</h3>
</div>

{% if object_list %}
{% render_video_wall object_list user %}
{% else %}
<div class="span12">
	<p>0 videos found for this activity.</p>
</div>
{% endif %}

            
<!-- pagination -->
{% if is_paginated %}
<div class="clearfix"></div>
<div class="pagination pagination-medium pull-right">
    <ul>
        {% if page_obj.has_previous %}
        <li><a href="?page={{ page_obj.previous_page_number }}" class="btn"><i class="icon-arrow-left"></i> Prev</a></li>
        {% endif %}
        {% if page_obj.has_next %}
        <li><a href="?page={{ page_obj.next_page_number }}" class="btn">Next <i class="icon-arrow-right"></i> </a></li>
        {% endif %}
    </ul>
</div>
{% endif %}


{% endblock content %}



{% block extrabody %}{% endblock extrabody %}