Improve logging features (edit and delete).

This commit is contained in:
2025-06-27 15:14:57 +02:00
committed by Jens Luedicke
parent a8d1f33874
commit 7f9783b2fc
8 changed files with 888 additions and 80 deletions

View File

@@ -11,10 +11,9 @@
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('about') }}">About</a></li>
<li><a href="{{ url_for('contact') }}">Contact</a></li>
<!-- Add this to your navigation menu -->
<li><a href="{{ url_for('history') }}">Complete History</a></li>
<li><a href="{{ url_for('config') }}" {% if title == 'Configuration' %}class="active"{% endif %}>Configuration</a></li>
<li><a href="{{ url_for('about') }}">About</a></li>
</ul>
</nav>
</header>
@@ -24,7 +23,7 @@
</main>
<footer>
<p>&copy; 2023 TimeTrack</p>
<p>&copy; 2025 TimeTrack</p>
</footer>
<script src="{{ url_for('static', filename='js/script.js') }}"></script>