|
@@ -221,6 +221,27 @@
|
|
|
</div>
|
|
|
</form>
|
|
|
|
|
|
+
|
|
|
+ <!--History block-->
|
|
|
+ <h4 class="mt-4">History</h4>
|
|
|
+
|
|
|
+ {% if event_list %}
|
|
|
+ {% for event in event_list %}
|
|
|
+ <div class="card mb-2 bg-body-secondary">
|
|
|
+ <div class="card-body">
|
|
|
+ <h5>{{ event.author_username }}</h5>
|
|
|
+
|
|
|
+ {{ comment.body|safe|urlize|linebreaks }}
|
|
|
+
|
|
|
+ <div class="text-body-secondary d-flex justify-content-between">
|
|
|
+ <small>{{ event.date }}</small>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ {% endfor %}
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+
|
|
|
<!--Discussion block-->
|
|
|
<h4 class="mt-4">Discussion</h4>
|
|
|
<form class="mb-3" method="post">
|