Files
inventory-app/inventory-app/templates/inventory_public.html
2025-05-31 02:38:09 +03:00

35 lines
949 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="container">
{% include "inventory_filter.html" %}
<p><a class="waves-effect waves-light btn" href="/login?redirect_url={{ redirect_url }}">Log in</a> to see more items</p>
<table>
<thead>
<tr>
<th>Slug</th>
<th>Name</th>
<th>Type</th>
</tr>
</thead>
<tbody>
{% for item in items %}
<tr>
<td>
{% if item.shortener %}
<a href="http://k6.ee/{{ item.shortener.slug }}">{{ item.shortener.slug }}</a>
{% endif %}
</td>
<td><a href="/m/inventory/{{ item._id }}/view">{{ item | format_name }} {{ item.comment }}</a></td>
<td>{{ item.type }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<p><a class="waves-effect waves-light btn" href="/login?redirect_url={{ redirect_url }}">Log in</a> to see more items</p>
</div>
{% endblock %}