From feb5d9b74fa1e8454eaaf29afae3643c6d7c81f1 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Fri, 11 Nov 2022 22:02:43 -0700 Subject: Got up to incoming posts working --- templates/activities/home.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 templates/activities/home.html (limited to 'templates/activities/home.html') diff --git a/templates/activities/home.html b/templates/activities/home.html new file mode 100644 index 0000000..9fe4bba --- /dev/null +++ b/templates/activities/home.html @@ -0,0 +1,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 %} -- cgit v1.2.3