diff --git a/bookwyrm/templates/book.html b/bookwyrm/templates/book.html index 06578e894..16bf11972 100644 --- a/bookwyrm/templates/book.html +++ b/bookwyrm/templates/book.html @@ -252,7 +252,7 @@
{% trans "rated it" %}
diff --git a/bookwyrm/templates/layout.html b/bookwyrm/templates/layout.html index 8a708f633..377acb6c5 100644 --- a/bookwyrm/templates/layout.html +++ b/bookwyrm/templates/layout.html @@ -79,7 +79,7 @@ aria-controls="navbar-dropdown" > {% include 'snippets/avatar.html' with user=request.user %} - {% include 'snippets/username.html' with user=request.user anchor=false %} + {{ user.display_name }}{% if list.curation != 'open' %}{% trans "Created and curated by" %}{% else %}{% trans "Created by" %}{% endif %} {% include 'snippets/username.html' with user=list.user %}
++ {% include 'lists/created_text.html' with list=list %} +
{% if list.curation != 'open' %}{% trans "Created and curated by" %}{% else %}{% trans "Created by" %} {% include 'snippets/username.html' with user=list.user %}
- {% endif %} ++ {% include 'lists/created_text.html' with list=list %} +
{% include 'snippets/trimmed_text.html' with full=list.description %}{# DESCRIPTION #} {% if notification.related_user %} - {% include 'snippets/avatar.html' with user=notification.related_user %} - {% include 'snippets/username.html' with user=notification.related_user %} + + {% include 'snippets/avatar.html' with user=notification.related_user %} + {{ notification.related_user.display_name }} + {% if notification.notification_type == 'FAVORITE' %} {% if related_status.status_type == 'Review' %} {% blocktrans with book_title=related_status.book.title related_path=related_status.local_path %}favorited your review of {{ book_title }}{% endblocktrans %} diff --git a/bookwyrm/templates/preferences/blocks.html b/bookwyrm/templates/preferences/blocks.html index 9cba06bfb..72d4abd40 100644 --- a/bookwyrm/templates/preferences/blocks.html +++ b/bookwyrm/templates/preferences/blocks.html @@ -15,7 +15,7 @@ {% for user in request.user.blocks.all %}
- {% include 'snippets/avatar.html' with user=user %} {% include 'snippets/username.html' with user=user %} + {% include 'snippets/avatar.html' with user=user %} {{ user.display_name }}
{% include 'snippets/block_button.html' with user=user %} diff --git a/bookwyrm/templates/search_results.html b/bookwyrm/templates/search_results.html index 8bbb7af26..4e8481f09 100644 --- a/bookwyrm/templates/search_results.html +++ b/bookwyrm/templates/search_results.html @@ -79,8 +79,10 @@
- {% include 'snippets/username.html' with user=requester show_full=True %} + {{ requester.display_name }} ({{ requester.username }})
{% include 'snippets/follow_request_buttons.html' with user=requester %}