Skip to content

Commit ae95ea9

Browse files
errorassassinDonnieBLT
authored andcommitted
Fixed #1604
Fixes #1604. The issue was caused due to newline in between of a {% trans %} tag. Removed it.
1 parent e81241e commit ae95ea9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

website/templates/profile.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,7 @@ <h1 class="page-header text-capitalize">{{ user.username }}</h1>
365365
{% include '_activity.html' %}
366366
{% endfor %}
367367
</div>
368-
<a href="/all_activity?user={{ user.username }}" class="btn btn-default btn-block">{% trans 'View All
369-
Activity by' %} {{ user.username }}</a>
368+
<a href="/all_activity?user={{ user.username }}" class="btn btn-default btn-block">{% trans 'View All Activity by' %} {{ user.username }}</a>
370369
{% else %}
371370
<div class="text-center">{% trans 'No Activity Yet' %}!</div>
372371
{% endif %}

0 commit comments

Comments
 (0)