{% load i18n admin_urls static admin_list %} {% load core_tags %} {% block extrastyle %} {% endblock %} {% block content %}
{% for obj in results %}
{{obj.bookmarked_at}} {{ obj.archive_size | file_size }}
{{obj.url}}
{% snapshot_thumbnail obj admin=True width="100%" height="245px" %} {% if obj.tags_str %}
{% for tag in obj.tags_str|split:',' %} {{tag}} {% endfor %}
{% endif %}
{% if obj.status == 'started' %}
Archiving...
{% else %} {{ obj.icons|safe }} {% endif %}
{% endfor %}

{% endblock %}