{% if post.type == POST_TYPE_ARTICLE %}
{% include "post/post_teaser/_article.html" -%}
diff --git a/app/templates/post/_post_teaser_masonry.html b/app/templates/post/_post_teaser_masonry.html
index 0bf96b33..836d15b0 100644
--- a/app/templates/post/_post_teaser_masonry.html
+++ b/app/templates/post/_post_teaser_masonry.html
@@ -11,7 +11,7 @@
{% else %}
{% set post_title = post.title.replace('`', "'") %}
+ {% if content_blocked %} title="{{ _('Filtered: ') }}{{ content_blocked }}"{% endif %} id="post_{{ post.id }}">
{% if post.image_id and not (post.url and (post.url.endswith('.mp4') or post.url.endswith('.webm'))) %}
{% if post.type == POST_TYPE_LINK or post.type == POST_TYPE_VIDEO %}
diff --git a/app/templates/post/post_teaser/_title.html b/app/templates/post/post_teaser/_title.html
index 22302c3c..bfd84893 100644
--- a/app/templates/post/post_teaser/_title.html
+++ b/app/templates/post/post_teaser/_title.html
@@ -28,4 +28,4 @@
{% if show_post_community -%}
{% if post.community.icon_id and not low_bandwidth %}{% endif -%}
c/{{ post.community.name }}{% endif -%}
- by {{ render_username(post.author) }}
+ by {{ render_username(post.author, htmx_redirect_back_to=request.url + '#post_' + str(post.id)) }}
diff --git a/app/templates/user/edit_note.html b/app/templates/user/edit_note.html
index 5f003e0e..083f3bdc 100644
--- a/app/templates/user/edit_note.html
+++ b/app/templates/user/edit_note.html
@@ -42,6 +42,10 @@