{% extends "testimonials/base.html" %} {% load pagination_tags %} {% load testimonial_tags %} {% load perm_tags %} {% load search_tags %} {% block title %}Testimonials{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %} {% autopaginate testimonials 5 %} {% has_perm user testimonials.add_testimonial as can_add_testimonial %}

{% firstof MODULE_STORIES_LABEL_PLURAL "Testimonials"%}

{% testimonial_search %} {% if can_add_testimonial %}
Add Testimonial
{% endif %}
{% for testimonial in testimonials %} {% search_result testimonial %} {% empty %}

0 Testimonials Found

{% endfor %}
{% paginate %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}