{% extends "base.html" %} {% block content %}

📝 Add Work Log

{% for proj in projects %}

📈 Generate Reports

{% if report %}

{{ report_mode|title }} Report

{{ report|safe }}
{% if report_text %} {% endif %}
{% endif %}

📋 Recent Logs

{% if logs %}
{% for log in logs[:20] %} {% endfor %}
ID Date Project Description Actions
{{ log.id }} {{ log.date.strftime('%Y-%m-%d') }} {{ log.project }} {{ log.description }}

Showing {{ logs[:20]|length }} of {{ logs|length }} total logs

{% else %}

No logs found. Add your first log entry above!

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}