{% extends "base.html.j2" %} {% from 'bootstrap5/form.html' import render_form %} {% from "tables.html.j2" import origins_table %} {% block content %}

Country

{{ country.description }} {{ country.country_code | country_flag }}

{{ render_form(form) }}

Origins

{% if country.origins %} {{ origins_table(country.origins) }} {% endif %} {% endblock %}