{% extends "base_view.html" %} {% block title %} meliza-lab : inventory {% endblock %} {% block content %}
This web application allows you to interact with the inventory database. There are two kinds of records you need to know about. Items describe specific pieces of equipment, supplies, or services. The item record contains information about the vendor, manufacturer, and other details of the item. Orders describe, well, orders we place for those items.
To order something, you create an order and assign items to it. When an item is assigned to an order, you enter per-order information like price and quantity. If an item doesn't exist, you'll need to create it and then add it to the order.
{% endblock %}