{% extends "base.html" %} {% load static %} {% load i18n %} {% block content %}

{% trans "Country Listing" %}

{% for object in object_list %} {% endfor %}
{% trans "ID" %}{% trans "Link" %} {% trans "country" %} {% trans "created" %} {% trans "modified" %}
{{object.pk}} {{object}} {{ object.country_iso2 }} {{ object.created }} {{ object.modified }}
{% trans "Create new Country" %} {% endblock %}