summaryrefslogtreecommitdiffstats
path: root/templates/activities/home.html
blob: 9fe4bba26ae28468ebc68a902a80687c62133c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% load crispy_forms_tags %}

{% block title %}Home{% endblock %}

{% block content %}

    {% crispy form form.helper %}

    {% for post in timeline_posts %}
        {% include "activities/_post.html" %}
    {% empty %}
        No posts yet.
    {% endfor %}
{% endblock %}