{% extends "webui/collections/base.html" %} {% load bootstrap_pagination thumbnail webui_tags %} {% block title %}Objects | {{ collection.id }}{% endblock %} {% block breadcrumbs %}{{ block.super }} {% breadcrumbs collection "Objects" %} {% endblock breadcrumbs %} {% block content %}

{{ collection.id }} {% if collection.title %}— {{ collection.title }}{% endif %}

{% if username and models_valid %} {% if collection.locked or collection.repo_behind or collection.repo_conflicted %}

{% if collection.repo_behind %}Editing is disabled until collection is synced.{% endif %} {% if collection.repo_conflicted %}Editing is disabled until merge conflict is resolved.{% endif %}

{% else %}

New object

{% endif %}{# conflicted #} {% endif %}{#username #} {% if page.object_list %}
{{ paginator.count }} items
{% if paginator.num_pages > 1 %} {% bootstrap_paginate page range=10 show_first_last="true" %} {% endif %} {% for entity in page.object_list %} {% endfor %}
ID Title
{% if entity.signature_id %} {% thumbnail entity.signature_abs "100x100" crop="center" as img %} {% endthumbnail %} {% endif %} {{ entity.id }} {% if entity.title %} {{ entity.title }} {% endif %}
{% if paginator.num_pages > 1 %} {% bootstrap_paginate page range=10 show_first_last="true" %} {% endif %} {% else %}

This collection has no objects.

{% endif %}
{% endblock content %}