This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/activities/home.html

16 lines
302 B
HTML
Raw Normal View History

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