fixed lists on metrics page [deliver #26022545]

pull/1/head
eric 2012-03-09 09:19:55 -05:00
parent 6c517e9a5e
commit f6d267b200
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@
<dd>
<ul>
<li>{{ works.today.count }} have been added today. They are
<ul>{% for work in users_today %}
<ul>{% for work in works.today %}
<li><a href="{% url work work.id %}">{{work.title}}</a></li>
{% endfor %}</ul>
</li>
@ -65,7 +65,7 @@
<dd>
<ul>
<li>{{ ebooks.today.count }} have been added today. They are
<ul>{% for work in users_today %}
<ul>{% for ebook in ebooks.today %}
<li><a href="{% url work ebook.edition.work.id %}">{{ebook.edition.work.title}}</a></li>
{% endfor %}</ul>
</li>