suchwow/suchwow/templates/post/top.html

46 lines
1.2 KiB
HTML
Raw Normal View History

2020-08-10 23:58:39 +01:00
{% extends 'base.html' %}
{% block content %}
<div class="container" style="text-align:center;">
<div class="title">
2021-04-16 23:07:49 +01:00
<h3>{% block title %}Top 10 Posts{% endblock %}</h3>
2020-08-10 23:58:39 +01:00
</div>
{% if posts %}
<table class="table table-striped">
<tr>
<th>Date</th>
<th>ID</th>
<th>Title</th>
<th>Submitter</th>
2021-03-08 07:41:15 +00:00
<th>Thumbnail</th>
<th>Amount</th>
</tr>
2020-08-27 05:47:14 +01:00
{% for post in posts %}
<tr>
<td>{{ post[1].timestamp.strftime('%Y-%m-%d %H:%M') }}</td>
<td>{{ post[1].id }}</td>
2020-09-16 22:20:02 +01:00
<td><a href="{{ url_for('post.read', id=post[1].id) }}">{{ post[1].title }}</a></td>
<td><a href="/?submitter={{ post[1].submitter }}">{{ post[1].submitter }}</a></td>
2021-03-08 07:41:15 +00:00
<td>
2021-03-08 07:45:42 +00:00
<a href="{{ url_for('post.read', id=post[1].id) }}">
<img src="{{ url_for('post.uploaded_file', filename=post[1].get_thumbnail_name()) }}" width=200 style="max-height:200px;">
2021-03-08 07:41:15 +00:00
</a>
</td>
<td>{{ post[0] }} WOW</td>
</tr>
2020-08-10 23:58:39 +01:00
{% endfor %}
</table>
2020-08-10 23:58:39 +01:00
{% else %}
<p>No posts yet!</p>
{% endif %}
<hr>
<a href="{{ url_for('index') }}"><button class="btn btn-warning">Go Home</button></a>
2020-08-10 23:58:39 +01:00
</div>
{% endblock %}