2021-10-06 14:33:49 -04:00
|
|
|
{% extends 'flask_user/_public_base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h1 style="text-align: center;">Social Status</h1>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
|
|
|
{{markup_content}}
|
|
|
|
|
2021-10-06 15:54:42 -04:00
|
|
|
<p style="text-align: center;">Post History</p>
|
2021-10-06 14:33:49 -04:00
|
|
|
|
2021-10-06 15:54:42 -04:00
|
|
|
<table data-toggle="table" data-pagination="true" data-search="true" >
|
2021-10-06 14:33:49 -04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Post</th>
|
|
|
|
<th>Time</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
{{all_post}}
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-10-06 15:54:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-10-06 14:33:49 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|