takahe/templates/statuses/home.html

16 lines
301 B
HTML
Raw Normal View History

2022-11-05 20:17:27 +00:00
{% extends "base.html" %}
{% load crispy_forms_tags %}
{% block title %}Home{% endblock %}
{% block content %}
{% crispy form form.helper %}
{% for status in statuses %}
{% include "statuses/_status.html" %}
{% empty %}
No statuses yet.
{% endfor %}
{% endblock %}