diff --git a/mediagoblin/templates/mediagoblin/utils/collection_gallery.html b/mediagoblin/templates/mediagoblin/utils/collection_gallery.html
index dfe2ebe..3a67742 100644
a
|
b
|
|
30 | 30 | <td class="media_thumbnail thumb_entry |
31 | 31 | {%- if loop.first %} thumb_entry_first |
32 | 32 | {%- elif loop.last %} thumb_entry_last{% endif %}"> |
33 | | <a href="{{ entry_url }}"> |
| 33 | <a href="{{ entry_url }}" {% if item.note %} |
| 34 | title="{{ item.note }}" |
| 35 | {% endif %}> |
34 | 36 | <img src="{{ media_entry.thumb_url }}" /> |
35 | 37 | </a> |
36 | 38 | |
37 | | {% if item.note %} |
38 | | <a href="{{ entry_url }}">{{ item.note }}</a> |
39 | | {% endif %} |
| 39 | <a href="{{ entry_url }}">{{ media_entry.title }}</a> |
40 | 40 | {% if request.user and |
41 | 41 | (item.in_collection.creator == request.user.id or |
42 | 42 | request.user.has_privilege('admin')) %} |