You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.2 KiB

{% extends 'base.html' %}
{% block content %}
<div class="container" style="text-align:center;">
<div class="title">
4 years ago
<h3>{% block title %}Latest Posts{% endblock %}</h3>
</div>
4 years ago
{% if posts %}
<table class="table table-striped">
<tr>
<th>Date</th>
<th>ID</th>
<th>Title</th>
<th>Submitter</th>
</tr>
4 years ago
{% for post in posts %}
<tr>
<td>{{ post.timestamp.strftime('%Y-%m-%d %H:%M') }}</td>
<td>{{ post.id }}</td>
<td><a href="{{ url_for('post.read', id=post.id) }}">{{ post.title }}</a></td>
<td>{{ post.submitter }}</td>
</tr>
4 years ago
{% endfor %}
</table>
4 years ago
{% else %}
<p>No posts yet!</p>
{% endif %}
{% if page > 1 %}
<a href="/?page={{ page - 1 }}" style="padding:1em;">Back</a>
{% endif %}
{% if page < total_pages and total_pages > 0 %}
<a href="/?page={{ page + 1 }}" style="padding:1em;">Next</a>
{% endif %}
4 years ago
<hr>
<h3>Leaderboards</h3>
<a href="{{ url_for('post.top') }}"><button class="btn btn-warning">Top Posts</button></a>
<a href="{{ url_for('leaderboard.leaderboard') }}"><button class="btn btn-warning">Top Posters</button></a>
4 years ago
</div>
{% endblock %}