{% 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 %}