modified: Dockerfile

new file:   pdf_export.py
	modified:   requirements.txt
	modified:   routes/journal_routes.py
	modified:   static/css/style.css
	modified:   templates/base.html
	modified:   templates/day.html
	new file:   templates/edit_future.html
	new file:   templates/edit_note.html
	modified:   templates/future.html
	modified:   templates/monat.html
	new file:   templates/report.html
	modified:   templates/week.html
This commit is contained in:
SimolZimol
2026-08-02 21:28:30 +02:00
parent 428dccc5b0
commit f973e67311
13 changed files with 751 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{% extends "base.html" %}
{% block title %}Future-Log-Eintrag bearbeiten Bullet Journal{% endblock %}
{% block content %}
<div class="page-head">
<div>
<h1>Future-Log-Eintrag bearbeiten</h1>
</div>
<a href="{{ url_for('journal.future') }}" class="btn btn-small">← Zurück zum Future Log</a>
</div>
<section class="card">
<form method="post" action="{{ url_for('journal.edit_future', entry_id=entry.id) }}" class="stack">
<label>
Monat
<input type="month" name="month" value="{{ entry.month_date.strftime('%Y-%m') }}" required>
</label>
<label>
Notiz
<textarea name="note_text" rows="3" required>{{ entry.note_text }}</textarea>
</label>
<div class="report-actions">
<button type="submit" class="btn btn-primary">Speichern</button>
</div>
</form>
</section>
{% endblock %}