{% extends "generic/object_retrieve.html" %} {% load helpers %} {% block buttons %} {% if perms.nautobot_consumables.add_checkedoutconsumable %} Check Out {% endif %} {{ block.super }} {% endblock buttons %} {% block content_left_page %}
Consumable Pool Details
Name {{ object.name }}
Consumable {{ object.consumable }}
Storage Location {{ object.location }}
Quantity {{ object.quantity }}
Used Quantity {{ object.used_quantity }}
Available Quantity {{ object.available_quantity }}
{% endblock content_left_page %} {% block content_right_page %}
{{ object.consumable.name }} Details
Name {{ object.consumable.name }}
Type {{ object.consumable.consumable_type | hyperlinked_object }}
Manufacturer {{ object.consumable.manufacturer | hyperlinked_object }}
Product ID {{ object.consumable.product_id }}
{{ object.consumable.name }} Item Details
{% include "nautobot_consumables/inc/json_details.html" with template_details=object.consumable.template_details %}
{% endblock content_right_page %} {% block content_full_width_page %} {% include "nautobot_consumables/inc/bulk_edit_table.html" with table=table_checkedoutconsumables title="Checked Out Consumables" bulk_edit_url="plugins:nautobot_consumables:checkedoutconsumable_bulk_edit" bulk_delete_url="plugins:nautobot_consumables:checkedoutconsumable_bulk_delete" delete_icon="mdi-clipboard-text" delete_text="Check in Selected" delete_class="default" disable_pagination=disable_pagination %} {% endblock content_full_width_page %}