{% extends 'base.html' %} {% load i18n %} {% block title %}{{ block.super }} {% trans 'Countries' %}{% endblock %} {% block content %}

{% trans 'Countries' %}

{% for country in countries %} {% include 'widgets/read-more-link.html' with href=country.get_absolute_url text=country %} {% endfor %} {% endblock content %}