Commit 9c2a2265f0d634605e3160964c12d695e647d0ed
Exists in
master
and in
4 other branches
Merge pull request #118 from colab/fix_user_profile_blocks
Fixing user profile blocks
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
colab/accounts/templates/accounts/user_detail.html
... | ... | @@ -133,7 +133,7 @@ |
133 | 133 | <h3>{% trans "Latest posted" %} </h3> |
134 | 134 | <ul class="message-list"> |
135 | 135 | {% for doc in emails %} |
136 | - {% include "message-preview.html" with result=doc %} | |
136 | + {% include "dashboard-message-preview.html" with result=doc %} | |
137 | 137 | {% empty %} |
138 | 138 | <li>{% trans "There are no posts by this user so far." %}</li> |
139 | 139 | {% endfor %} |
... | ... | @@ -148,7 +148,7 @@ |
148 | 148 | <h3>{% trans "Latest contributions" %}</h3> |
149 | 149 | <ul class="message-list"> |
150 | 150 | {% for result in results %} |
151 | - {% include "message-preview.html" %} | |
151 | + {% include "dashboard-message-preview.html" %} | |
152 | 152 | {% empty %} |
153 | 153 | <li>{% trans "No contributions of this user so far." %}</li> |
154 | 154 | {% endfor %} | ... | ... |