{% extends "layout.html" %} {% block title %}Dispose Asset{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %} {% include "authorization_header.html" %} {% if session.logged_in %}

DISPOSE OF ASSET

Assets Currently In Database

{% if assets_list is not defined %}

There are currently no assets in the database.

{% endif %} {% if assets_list is defined %} {% for ast in assets_list %} {% endfor %}
Asset Tag Asset Description Asset Location Disposal Status
{{ ast[0] }} {{ ast[1] }} {{ ast[2] }} {{ ast[3] }}
{% endif %}

Please follow the guidelines outlined within each text field.

Asset Tag:
Disposal Date:



RETURN TO DASHBOARD
{% endif %} {% endblock %}