summaryrefslogtreecommitdiffstats
path: root/templates/statuses/home.html
blob: e47ccfda83069cbc961e422b2a5f4fec12623da5 (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 status in statuses %}
        {% include "statuses/_status.html" %}
    {% empty %}
        No statuses yet.
    {% endfor %}
{% endblock %}