Commit c890bff746012177bc5265356c15358c32a4935a

Authored by Matheus de Sousa Faria
1 parent 66b17673

Fixing user profile blocks

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 %}
... ...