suchwow/suchwow/templates/post/read.html

36 lines
1.3 KiB
HTML
Raw Normal View History

2020-07-28 21:31:07 +01:00
{% extends 'base.html' %}
{% block content %}
<div class="container">
<div class="post" style="text-align:center;">
<a href="/">< Go Back</a>
2020-07-28 21:31:07 +01:00
{% if post.hidden %}
<h2>You cannot see this post</h2>
2020-07-28 21:31:07 +01:00
{% else %}
<h1>{{ post.title }}</h1>
<p class="subtitle">{{ post.text }}</p>
<p class="subtext">Submitted by <i><u>{{ post.submitter }}</u></i> at <i>{{ post.timestamp }}</i></p>
<br>
<img src="{{ url_for('post.uploaded_file', filename=post.image_name) }}" width=500/ style="margin-bottom:1em;border-radius:4px;">
<hr>
2020-08-10 07:59:45 +01:00
<p style="word-break:break-all;">Vote for this post by sending WOW to the following address:<br><i>{{ address }}</i></p>
<hr>
2020-08-10 06:52:01 +01:00
<h3>Comments</h3>
{% if comments %}
{% for comment in comments %}
2020-08-10 17:54:44 +01:00
<p id="comment{{ comment.id }}">
<a href="{{ url_for('post.read', id=post.id, _external=True) }}#comment{{ comment.id }}">#{{ comment.id }}</a> - <i>{{ comment.commenter.username }}</i> - {{ comment.comment }}
</p>
{% endfor %}
{% else %}
<p>No comments yet.</p>
{% endif %}
2020-07-28 21:31:07 +01:00
{% endif %}
2020-08-10 17:54:44 +01:00
<hr>
<a href="{{ url_for('comment.create', post_id=post.id) }}"><button class="btn btn-warning">Leave a Comment</button></a>
</div>
</div>
2020-07-28 21:31:07 +01:00
{% endblock %}