{% extends "base.html" %} {% load i18n static %} {% block title %} {{ _("Services") }} {% endblock title %} {% block content %} {% if services or request.GET.q %}

{% trans "Services" %}

{% if perms.inventory.add_additionalservices %} {% trans "Add Service" %} {% endif %}
{% include "partials/search_box.html" %} {% if page_obj.object_list or request.GET.q %}
{% for service in services %} {% empty %} {% endfor %}
{% trans "Item Number" %} {% trans "Name" %} {% trans "Unit of Measure" %} {% trans "Taxable" %} {% trans "Account" %} {% trans "Action" %}
{{ service.pk }} {{ service.get_local_name|default:service.name }} {{ service.get_uom_display }} {{ service.taxable|yesno }} {{ service.item.co }} {% if perms.inventory.add_additionalservices %}
  • {% trans "Update" %}
    {% endif %}
    {% trans "No Services Found" %}
    {% if page_obj.paginator.num_pages > 1 %}
    {% include 'partials/pagination.html' %}
    {% endif %} {% endif %}
    {% else %} {% url 'item_service_create' request.dealer.slug as create_services_url %} {% include "empty-illustration-page.html" with value="service" url=create_services_url %} {%endif%} {% endblock %}