13 lines
216 B
HTML
13 lines
216 B
HTML
<html>
|
|
<head>
|
|
<title>Index</title>
|
|
</head>
|
|
<body>
|
|
<h1>Test</h1>
|
|
{% for status in statues recursive%}
|
|
{{ status.content | safe }}
|
|
{{ status.created_at }}
|
|
<hr/>
|
|
{% endfor %}
|
|
</body>
|
|
</html>
|