From e9097a950db45f8da26286b3ac19353453460b93 Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Wed, 23 May 2018 14:04:51 -0400 Subject: [PATCH] Fix one more place where I didn't update templates --- brutaldon/templates/main/user.html | 34 ++++++++++++++---------------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/brutaldon/templates/main/user.html b/brutaldon/templates/main/user.html index 51de3af..cdb9115 100644 --- a/brutaldon/templates/main/user.html +++ b/brutaldon/templates/main/user.html @@ -4,26 +4,26 @@ {% load taglinks %} {% block title %} - Brutaldon - {{ timeline }} timelime +Brutaldon - {{ timeline }} timelime {% endblock %} {% block content %} -
- {% if not fullbrutalism %} -
+
+ {% if not fullbrutalism %} +
{% else %} -
- {% endif %} +
+ {% endif %}
- Avatar -
-
+ Avatar + +
{{ user.note | relink_toot | strip_html | safe }} @@ -34,14 +34,12 @@
{% for toot in toots %} -
- {% if toot.reblog %} - {% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %} - {% else %} - {% include "main/toot_partial.html" with toot=toot reblog=False %} - {% endif %} -
- + {% if toot.reblog %} + {% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %} + {% else %} + {% include "main/toot_partial.html" with toot=toot reblog=False %} + {% endif %} + {% endfor %} -{% endblock %} + {% endblock %}