This commit is contained in:
Andrew Hayward 2013-06-05 17:37:22 +01:00
Родитель b672bfbe8e
Коммит 563b5961ab
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -22,7 +22,7 @@
{% for current in dependants %}
<h3>{{ current.getDisplayName() }}'s recent activity</h3>
{% if current.activities.length %}
<ul class="activity thumbnails">
<ul class="activities thumbnails">
{% for activity in current.activities %}
<li class="span3">
{% include "includes/learner-activity.html" %}
@ -32,7 +32,7 @@
{% else %}
<p>{{ current.getDisplayName() }} does not have any recent activity.</p>
{% endif %}
<p class="text-right"><a href="/dashboard/{{ dependant.username }}" class="btn">See all activity &raquo;</a></p>
<p class="text-right"><a href="/dashboard/{{ current.username }}" class="btn">See all activity &raquo;</a></p>
{% endfor %}
{% endblock %}
{% endblock %}