{% extends "photos/base-wide.html" %} {% load photo_tags %} {% load base_tags %} {% load bootstrap_pagination_tags %} {% block title %}{% blocktrans %}Batch Edit Photos{% endblocktrans %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Bulk edit photos" %}

{% csrf_token %}
{{ tag_help_text }}
{{ photo_formset.management_form }}
{% for photo_form in photo_formset.forms %}
{{ photo_form.id }} {% for error in photo_form.errors %}
  • {{ error|escape }}
  • {% endfor %}
    {{ photo_form.instance.title|truncatechars:123 }} {{ photo_form.instance.title|truncatechars:123 }}
    {{ photo_form.photoset }}
    {{ photo_form.title.label_tag }}
    {{ photo_form.title }}
    {{ photo_form.caption.label_tag }}
    {{ photo_form.caption }}
    {{ photo_form.photographer.label_tag }}
    {{ photo_form.photographer }}
    {{ photo_form.position.label_tag }}
    {{ photo_form.position }}
    {{ photo_form.tags.label_tag }}
    {{ photo_form.tags }}
    {{ photo_form.tags.help_text }}
    {{ photo_form.license.label_tag }}
    {{ photo_form.license }}
    {{ photo_form.group.label_tag }}
    {{ photo_form.group }}
    {% trans "Set as album cover" %}
    {% trans 'Delete' %}
    {% empty %}

    {% trans "All photos have been approved, nothing to see here." %}

    {% endfor %}
    {% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}