{% extends 'base.html' %} {% load i18n %} {% load static %} {% block title %} {% trans 'Organizations' %} {% endblock %} {% block organizations %} {% trans 'Organizations' %} {% endblock %} {% block content %} {% if organizations or request.GET.q %} {% trans 'Organizations' %} {% if perms.inventory.add_organization %} {% trans 'add organization'|capfirst %} {% endif %} {% include 'partials/search_box.html' %} {{ _("Name") |capfirst }} {% trans 'CRN' %} {% trans 'VRN' %} {% trans 'Phone' %} {% trans 'Address' %} {{ _("Create date") }} {% for org in organizations %} {% trans 'Delete Organization' %} {% trans 'Are you sure you want to delete this Organization?' %} {% trans 'No' %} {% trans 'Yes' %} {{ org.name }} {{ org.crn }} {{ org.vrn }} {{ org.phone_number }} {{ org.address }} {{ org.created|date }} {% if perms.inventory.change_organization or perms.inventory.delete_organization %} {% if perms.inventory.change_organization %} {% trans 'Edit' %} {% endif %} {% if perms.inventory.delete_organization %} {% trans 'Delete' %} {% endif %} {% endif %} {% empty %} {% trans "No Organizations found." %} {% endfor %} {% if page_obj.paginator.num_pages > 1 %} {% include 'partials/pagination.html' %} {% endif %} {% else %} {% url 'organization_create' request.dealer.slug as create_organization_url %} {% include "empty-illustration-page.html" with value=empty_state_value url=create_organization_url %} {% endif %} {% endblock %}
{% trans 'Are you sure you want to delete this Organization?' %}