2018-04-24 00:16:22 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load humanize %}
|
|
|
|
|
2018-04-24 14:09:16 +02:00
|
|
|
{% block title %}
|
|
|
|
Brutaldon - {{ timeline }} timelime
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-04-24 00:16:22 +02:00
|
|
|
{% block content %}
|
2018-04-24 14:09:16 +02:00
|
|
|
<h1 class="title">Your {{ timeline }} timeline</h1>
|
|
|
|
{% for toot in toots %}
|
2018-04-24 15:12:13 +02:00
|
|
|
{% if toot.reblog %}
|
2018-04-24 15:24:06 +02:00
|
|
|
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %}
|
2018-04-24 15:12:13 +02:00
|
|
|
{% else %}
|
|
|
|
{% include "main/toot_partial.html" with toot=toot reblog=False %}
|
|
|
|
{% endif %}
|
2018-04-24 14:09:16 +02:00
|
|
|
<hr class="is-hidden">
|
|
|
|
{% endfor %}
|
2018-04-24 00:16:22 +02:00
|
|
|
{% endblock %}
|