inventory/templates/index.html

13 lines
No EOL
540 B
HTML

<!-- templates/index.html -->
{% extends "layout.html" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<h1 class="text-center display-3">Table of Contents</h1>
<div class="row text-center m-5">
{{ links.category_link(endpoint = 'inventory_index', label = 'Inventory', icon_html = icons.inventory) }}
{{ links.category_link(endpoint = 'list_users', label = "Users", icon_html = icons.user) }}
{{ links.category_link(endpoint = 'list_worklog', label = 'Worklog', icon_html = icons.log) }}
</div>
{% endblock %}