{% extends 'base.html' %} {% block contentbody %} {% csrf_token %}

Country

{% if perms.projsettings.add_country %}
Add Country
{% endif %}
{% for country in countries %} {% endfor %}
SN Name Currency Abbreviation Status Actions
{{ forloop.counter }} {{ country.name }} {{ country.currency }} {{ country.abbrevation }} {% if country.status %} Active {% else %} Inactive {% endif %} {% if perms.projsettings.change_country %} Edit {%endif%} {% if perms.projsettings.delete_country %} Delete
{% csrf_token %}
{%endif%}
{% endblock contentbody %} {% block js %} {% endblock js%}