9 lines
159 B
HTML
9 lines
159 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>OEs</h1>
|
|
|
|
{% for id,name in dbresult %}
|
|
<a href=/inventory/{{ id }}>{{name}}</a>
|
|
{% endfor %}
|
|
{% endblock %}
|