{% extends "base.html" %} {% block title %}Manage Blog Posts{% endblock %} {% block content %}

Manage Blog Posts

Back to Dashboard | Create New Post

{% if let Some(err) = error %} {{ err }}

{% endif %} {% if posts.is_empty() %} No posts found. {% else %} {% for post in posts %} {% endfor %}
ID Title Visibility Created At Actions
{{ post.id }} {{ post.title }} {{ post.visibility }} {{ post.formatted_created_at() }} Edit |
{% endif %} {% endblock %}