{% extends "base.html" %} {% block title %}Home{% endblock %} {% block content %} {% include "activities/_home_menu.html" %}
{% for event in events %} {% if event.type == "post" %} {% include "activities/_post.html" with post=event.subject_post %} {% elif event.type == "boost" %} {% include "activities/_post.html" with post=event.subject_post %} {% endif %} {% empty %} Nothing to show yet. {% endfor %}

Compose

{% csrf_token %} {{ form.text }} {{ form.content_warning }}
CW
{% endblock %}