Initial commit.

This commit is contained in:
Yaro Kasear 2025-06-11 09:10:41 -05:00
commit 189f73b7c2
34 changed files with 1064 additions and 0 deletions

21
templates/index.html Normal file
View file

@ -0,0 +1,21 @@
<!-- templates/index.html -->
{% extends "layout.html" %}
{% import "_table_fragment.html" as tables %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<h1 class="text-center display-3">Table of Contents</h1>
<div class="row text-center m-5">
<div class="col">
<a class="link-success link-underline-opacity-0" href="{{ url_for('main.list_inventory') }}">Inventory</a>
</div>
<div class="col">
<a class="link-success link-underline-opacity-0" href="{{ url_for('main.list_users') }}">Users</a>
</div>
<div class="col">
<a class="link-success link-underline-opacity-0" href="{{ url_for('main.list_worklog') }}">Work Log</a>
</div>
</div>
{% endblock %}