mirror of https://gitlab.com/brutaldon/brutaldon
Show full @reference for remote users
This commit is contained in:
parent
2310146b5b
commit
9b0b5e930a
|
@ -9,7 +9,7 @@
|
||||||
<h1 class="title">Your {{ timeline }} timeline</h1>
|
<h1 class="title">Your {{ timeline }} timeline</h1>
|
||||||
{% for toot in toots %}
|
{% for toot in toots %}
|
||||||
{% if toot.reblog %}
|
{% if toot.reblog %}
|
||||||
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.username reblog_icon=toot.account.avatar %}
|
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% include "main/toot_partial.html" with toot=toot reblog=False %}
|
{% include "main/toot_partial.html" with toot=toot reblog=False %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<p>
|
<p>
|
||||||
<strong>{{ toot.account.display_name }}</strong>
|
<strong>{{ toot.account.display_name }}</strong>
|
||||||
<small>@{{ toot.account.username }}</small>
|
<small>@{{ toot.account.acct }}</small>
|
||||||
<small>{{ toot.created_at |naturaltime }}</small>
|
<small>{{ toot.created_at |naturaltime }}</small>
|
||||||
{% if reblog %}
|
{% if reblog %}
|
||||||
<br>
|
<br>
|
||||||
|
|
Loading…
Reference in New Issue