This commit is contained in:
kek7198 2021-11-25 15:11:27 -06:00
parent c30f958800
commit 1405549e08

View file

@ -639,6 +639,26 @@
</div>
</div>
{% endblock %}
<!-- Sidebar -->
{% block sidebar %}
{% include "/sidebars/SubmissionSidebar.html" %}
{% endblock %}
{% block modals %}
{% if v and v.id==p.author_id %}
{% include "delete_post_modal.html" %}
{% endif %}
{% if v %}
{% include "report_post_modal.html" %}
{% endif %}
{% endblock %}
{% block scripts %}
<script>
(() => {
const date = new Date({{p.created_utc*1000}});
@ -669,20 +689,4 @@
{%endif%}
})()
</script>
{% if v and v.id==p.author_id %}
{% include "delete_post_modal.html" %}
{% endif %}
{% if v %}
{% include "report_post_modal.html" %}
{% endif %}
</div>
{% endblock %}
<!-- Sidebar -->
{% block sidebar %}
{% include "/sidebars/SubmissionSidebar.html" %}
{% endblock %}