Commit 9c2a2265f0d634605e3160964c12d695e647d0ed

Authored by Lucas Moura
2 parents 66b17673 c890bff7

Merge pull request #118 from colab/fix_user_profile_blocks

Fixing user profile blocks
colab/accounts/templates/accounts/user_detail.html
@@ -133,7 +133,7 @@ @@ -133,7 +133,7 @@
133 <h3>{% trans "Latest posted" %} </h3> 133 <h3>{% trans "Latest posted" %} </h3>
134 <ul class="message-list"> 134 <ul class="message-list">
135 {% for doc in emails %} 135 {% for doc in emails %}
136 - {% include "message-preview.html" with result=doc %} 136 + {% include "dashboard-message-preview.html" with result=doc %}
137 {% empty %} 137 {% empty %}
138 <li>{% trans "There are no posts by this user so far." %}</li> 138 <li>{% trans "There are no posts by this user so far." %}</li>
139 {% endfor %} 139 {% endfor %}
@@ -148,7 +148,7 @@ @@ -148,7 +148,7 @@
148 <h3>{% trans "Latest contributions" %}</h3> 148 <h3>{% trans "Latest contributions" %}</h3>
149 <ul class="message-list"> 149 <ul class="message-list">
150 {% for result in results %} 150 {% for result in results %}
151 - {% include "message-preview.html" %} 151 + {% include "dashboard-message-preview.html" %}
152 {% empty %} 152 {% empty %}
153 <li>{% trans "No contributions of this user so far." %}</li> 153 <li>{% trans "No contributions of this user so far." %}</li>
154 {% endfor %} 154 {% endfor %}