{% extends "base.html" %} {% block sidebar %} {% include "student/components/sidebar.html" %} {% endblock %} {% block content %}

Student Dashboard

Recent Posts

{% if posts %} {% for post in posts %}
{{post.title}}
{{post.author.name}},

{{post.content}}

{% endfor %} {% else %}

No posts

{% endif %}
{% endblock %}