diff --git a/tildes/tildes/templates/user.jinja2 b/tildes/tildes/templates/user.jinja2 index 3f2bb9c..6af1afa 100644 --- a/tildes/tildes/templates/user.jinja2 +++ b/tildes/tildes/templates/user.jinja2 @@ -50,7 +50,13 @@ {% if post is topic %} {{ render_topic_for_listing(post, show_group=True) }} {% elif post is comment %} -

Comment on {{ post.topic.title }} in {{ group_linked(post.topic.group.path) }}

+

Comment on + {% if post.topic.is_deleted and not post.topic.title %} + <deleted topic> + {% else %} + {{ post.topic.title }} + {% endif %} + in {{ group_linked(post.topic.group.path) }}

{{ render_single_comment(post) }} {% endif %}