FabulaVotes/templates/editable_truth.tera
trotFunky 9911895b5b v1.0: First production version
This first version allows login of pre-existing users, creation and update of truths
by admins, vote on the truths by users, their display as well as a simple graph
for the vote results.
Everything persisting in a SQLite database.
2024-07-23 21:51:42 +01:00

8 lines
259 B
Text

<div class="individual_truth">
<h3>Vérité {{ truth.number }}</h3>
<p>{{ truth.rendered_text | safe }}</p>
<hr/>
<form action="/{{ week_number }}/edit/{{ truth.number }}" method="POST">
{% include "truth_editor" %}
</form>
</div>