{% if bookmarks %}
{% for bookmark in bookmarks %} {{ bookmark.description }} {% if bookmark.notes %}
{{ bookmark.notes }}
{% endif %} {% if not delicious_user or default_person %}
by: {{ bookmark.user }}
{% endif %}
tags: {% for tag in bookmark.get_tags %}{% if not forloop.first %}, {% endif %}{{ tag }}{% endfor %}
{% if bookmark.others %}
saved by: {{ bookmark.others }} other pe{{ bookmark.others|pluralize:"rson,ople" }}
{% endif %} {% endfor %}
{% else %}
No bookmarks tagged with ccscslab.
{% endif %} {# vim: set filetype=htmldjango: #}