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
27 lines
915 B
HTML
27 lines
915 B
HTML
{% 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 %}
|