Files
Journal/templates/edit_future.html
SimolZimol f973e67311 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
2026-08-02 21:28:30 +02:00

27 lines
915 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% 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 %}