{% extends "base.html" %} {% block content %} {% include 'dashboard/_dash_menu.html' %} {% if post_list %} Id Date Author Article {% for post in my_posts %} {{ post.id }} {{ moment(post.timestamp).format('L') }} {{ post.author.screen_name }} {{ post.title }} Edit Delete {% endfor %} {% else %} Nothing Yet 🙄 {% endif %} {% endblock content %}