mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 11:21:13 +00:00
15 lines
301 B
HTML
15 lines
301 B
HTML
{% 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 %}
|