From 3fd36fa640971ee276e89770ca4488c06d68c24d Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Wed, 18 Jul 2018 13:40:42 -0400 Subject: [PATCH] Add username to title of pages --- brutaldon/templates/main/block.html | 2 +- brutaldon/templates/main/boost.html | 2 +- brutaldon/templates/main/fav.html | 2 +- brutaldon/templates/main/follow.html | 2 +- brutaldon/templates/main/notifications.html | 2 +- brutaldon/templates/main/post.html | 2 +- brutaldon/templates/main/reply.html | 2 +- brutaldon/templates/main/search.html | 2 +- brutaldon/templates/main/search_results.html | 2 +- brutaldon/templates/main/thread.html | 2 +- brutaldon/templates/main/timeline.html | 2 +- brutaldon/templates/main/user.html | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/brutaldon/templates/main/block.html b/brutaldon/templates/main/block.html index 257bfcb..8ff1398 100644 --- a/brutaldon/templates/main/block.html +++ b/brutaldon/templates/main/block.html @@ -2,7 +2,7 @@ {% load taglinks %} {% load sanitizer %} -{% block title %}Brutaldon - confirm (un)block {% endblock %} +{% block title %}Brutaldon ({{ own_acct.username }}) - confirm (un)block {% endblock %} {% block content %} {% if relationship.blocking %} diff --git a/brutaldon/templates/main/boost.html b/brutaldon/templates/main/boost.html index 7bfc3e4..a3c10c9 100644 --- a/brutaldon/templates/main/boost.html +++ b/brutaldon/templates/main/boost.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %} Brutaldon - confirm boost {% endblock %} +{% block title %} Brutaldon ({{ own_acct.username }}) - confirm boost {% endblock %} {% block content %} {% if toot.reblogged %} diff --git a/brutaldon/templates/main/fav.html b/brutaldon/templates/main/fav.html index c4ccf3a..194c3bf 100644 --- a/brutaldon/templates/main/fav.html +++ b/brutaldon/templates/main/fav.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %} Brutaldon - confirm favorite {% endblock %} +{% block title %} Brutaldon ({{ own_acct.username }}) - confirm favorite {% endblock %} {% block content %} {% if toot.favourited %} diff --git a/brutaldon/templates/main/follow.html b/brutaldon/templates/main/follow.html index 313f50d..faf9f9c 100644 --- a/brutaldon/templates/main/follow.html +++ b/brutaldon/templates/main/follow.html @@ -2,7 +2,7 @@ {% load taglinks %} {% load sanitizer %} -{% block title %}Brutaldon - confirm (un)follow {% endblock %} +{% block title %}Brutaldon ({{ own_acct.username }}) - confirm (un)follow {% endblock %} {% block content %} {% if relationship.requested %} diff --git a/brutaldon/templates/main/notifications.html b/brutaldon/templates/main/notifications.html index e8fd3b8..4ea9347 100644 --- a/brutaldon/templates/main/notifications.html +++ b/brutaldon/templates/main/notifications.html @@ -3,7 +3,7 @@ {% load taglinks %} {% block title %} -Brutaldon - Notifications timelime +Brutaldon ({{ own_acct.username }}) - Notifications timelime {% endblock %} {% comment %} diff --git a/brutaldon/templates/main/post.html b/brutaldon/templates/main/post.html index 87efa7b..11bf0ad 100644 --- a/brutaldon/templates/main/post.html +++ b/brutaldon/templates/main/post.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load static %} -{% block title %} Brutaldon - toot {% endblock %} +{% block title %} Brutaldon ({{ own_acct.username }} - toot {% endblock %} {% block page_scripts %} diff --git a/brutaldon/templates/main/reply.html b/brutaldon/templates/main/reply.html index 9c13a36..202eaf7 100644 --- a/brutaldon/templates/main/reply.html +++ b/brutaldon/templates/main/reply.html @@ -3,7 +3,7 @@ {% load static %} {% block title %} - Brutaldon - reply +Brutaldon ({{ own_acct.username }}) - reply {% endblock %} {% block page_scripts %} diff --git a/brutaldon/templates/main/search.html b/brutaldon/templates/main/search.html index 5d876d3..ad14914 100644 --- a/brutaldon/templates/main/search.html +++ b/brutaldon/templates/main/search.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load widget_tweaks %} -{% block title %}brutaldon – search {% endblock %} +{% block title %}brutaldon ({{ own_acct.username }}) – search {% endblock %} {% block content %}

Search

diff --git a/brutaldon/templates/main/search_results.html b/brutaldon/templates/main/search_results.html index b63b5c2..5ecc600 100644 --- a/brutaldon/templates/main/search_results.html +++ b/brutaldon/templates/main/search_results.html @@ -4,7 +4,7 @@ {% load sanitizer %} {% block title %} -Brutaldon - search results +Brutaldon ({{ own_acct.username }}) - search results {% endblock %} {% comment %} diff --git a/brutaldon/templates/main/thread.html b/brutaldon/templates/main/thread.html index d2b0274..44ff4cc 100644 --- a/brutaldon/templates/main/thread.html +++ b/brutaldon/templates/main/thread.html @@ -2,7 +2,7 @@ {% load humanize %} {% block title %} -Brutaldon - thread +Brutaldon ({{ own_acct.username }}) - thread {% endblock %} {% comment %} diff --git a/brutaldon/templates/main/timeline.html b/brutaldon/templates/main/timeline.html index c34d1d6..7d4ecec 100644 --- a/brutaldon/templates/main/timeline.html +++ b/brutaldon/templates/main/timeline.html @@ -3,7 +3,7 @@ {% load static %} {% block title %} -Brutaldon - {{ timeline_name }} timelime +Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timelime {% endblock %} {% block page_scripts %} diff --git a/brutaldon/templates/main/user.html b/brutaldon/templates/main/user.html index 287ee52..869c325 100644 --- a/brutaldon/templates/main/user.html +++ b/brutaldon/templates/main/user.html @@ -4,7 +4,7 @@ {% load taglinks %} {% block title %} -Brutaldon - {{ user.acct }} timelime +Brutaldon ({{ own_acct.username }}) - {{ user.acct }} timelime {% endblock %} {% block content %}