{% extends "base.html" %} {% block title %}Inventory Management - Media Inventory App{% endblock %} {% block content %}

đŸ“Ļ Inventory Management

Manage your InvenTree storage locations and inventory items

{% if error %} {% else %}
📍 Storage Locations
{% if locations %}
{% for location in locations %} {% endfor %}
ID Name Path Actions
{{ location.pk }} {{ location.name }} {{ location.pathstring }}
{% else %}

No storage locations found

{% endif %}
â„šī¸ How to Use
  1. Create Locations: Set up storage locations for your media
  2. Search Media: Use the search function to find items
  3. Add to Inventory: Click "Add to Inventory" on search results
  4. Delete Empty Locations: Remove unused locations with the delete button
  5. Manage: Use InvenTree web interface for advanced management

Connected to:
InvenTree API ✅

{% endif %}
{% endblock %}