{% extends "base.html" %} {% block title %}Lab Inventory - {{ lab_name }}{% endblock %} {% block content %}
| Item Name | Description | Quantity | Location | Last Updated | {% if session.is_admin %}Actions | {% endif %}
|---|---|---|---|---|---|
| {{ item.name }} | {{ item.description or '-' }} | {{ item.quantity }} | {{ item.location or '-' }} | {{ item.updated_at[:10] }} | {% if session.is_admin %}Edit | {% endif %}
No equipment items found.
{% endif %}| Hostname | IP Address | Administrator | Location | Description | {% if session.is_admin %}Actions | {% endif %}
|---|---|---|---|---|---|
| {{ server.hostname }} | {{ server.ip_address }}
|
{{ server.admin_name or '-' }} | {{ server.location or '-' }} | {{ server.description or '-' }} | {% if session.is_admin %}Edit | {% endif %}
No servers registered.
{% endif %}