2022-11-05 13:17:27 -07:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{% crispy form form.helper %}
|
|
|
|
|
2022-11-11 21:02:43 -08:00
|
|
|
{% for post in timeline_posts %}
|
|
|
|
{% include "activities/_post.html" %}
|
2022-11-05 13:17:27 -07:00
|
|
|
{% empty %}
|
2022-11-11 21:02:43 -08:00
|
|
|
No posts yet.
|
2022-11-05 13:17:27 -07:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|