{% if bookmarks %} <dl class="delicious"> {% for bookmark in bookmarks %} <dt{% if not forloop.first %} class="notfirst"{% endif %}><a href="{{ bookmark.url }}" target="_blank">{{ bookmark.description }}</a></dt> {% if bookmark.notes %}<dd>{{ bookmark.notes }}</dd>{% endif %} {% if not delicious_user or default_person %}<dd class="tags">by: <a href="{{ bookmark.user.get_absolute_url }}" target="_blank">{{ bookmark.user }}</a></dd>{% endif %} <dd class="tags">tags: {% for tag in bookmark.get_tags %}{% if not forloop.first %}, {% endif %}<a href="{{ bookmark.user.get_absolute_url }}/{{ tag }}" target="_blank">{{ tag }}</a>{% endfor %}</dd> {% if bookmark.others %}<dd class="tags">saved by: <a href="{{ bookmark.get_absolute_url }}" target="_blank">{{ bookmark.others }} other pe{{ bookmark.others|pluralize:"rson,ople" }}</a></dd>{% endif %} {% endfor %} </dl> {% else %} <div style="padding-top: 10px;">No bookmarks tagged with <a href="http://delicious.com/tag/ccscslab" target="_blank">ccscslab</a>.</div> {% endif %} <!-- $Id$ --> {# vim: set filetype=htmldjango: #}