{% extends "base.html" %} {% load origin %} {% load ietf_filters static bootstrap3 %} {% block content %} {% origin %}

{% block title %}Countries known to the Datatracker{% endblock %}

In case you think a country or an alias is missing from the list, you can file a ticket.

{% if request.user.is_staff %}

Note: since you're an admin, the country names are linked to their corresponding admin page.

{% endif %} {% for c in countries %} {% endfor %}
Name Aliases (lowercase aliases are matched case-insensitive)
{% if request.user.is_staff %} {% endif %} {{ c.name }} {% if request.user.is_staff %} {% endif %} {% for a in c.aliases %} {{ a.alias }}{% if not forloop.last %},{% endif %} {% endfor %}
{% endblock %}