{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "Testimonials" %} {% endblock %} {% block content %}

{% trans "Testimonials" %}

{% if page_obj.has_previous %} {% trans "Next" %} {% endif %} {% if page_obj.has_next %} {% trans "Previous" %} {% endif %} {% for tstm in testimonials %}
{{ tstm.message }}
{{ tstm.author_name }}
{% endfor %}

{% trans "Leave your testimonial" %}

{% csrf_token %}


{% endblock %}