trotFunky
9911895b5b
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.
8 lines
259 B
Text
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>
|