Files
Journal/templates/edit_future.html
SimolZimol 208d0c0c54 modified: routes/journal_routes.py
modified:   templates/edit_future.html
	modified:   templates/future.html
	modified:   templates/report.html
2026-08-02 21:52:46 +02:00

27 lines
928 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 (Kalender)
<input type="date" name="month" value="{{ entry.month_date.strftime('%Y-%m-%d') }}" 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 %}