{% extends "photos/base-wide.html" %} {% load i18n %} {% load photo_tags %} {% load base_tags %} {% load pagination_tags %} {% block title %}{% blocktrans %}Batch Edit Photos{% endblocktrans %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% photo_set_nav request.user photo_set %}

{% trans "Bulk edit photos" %}

{% csrf_token %}
{% trans "Replace all titles" %}
{% trans "Replace all captions" %}
{% trans "Replace all tags" %}
{{ tag_help_text }}
{% trans "Replace all Licenses" %}
{% trans "Update all Groups" %}
{{ 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.photoset }}
    {{ photo_form.title.label_tag }}
    {{ photo_form.title }}
    {{ photo_form.caption.label_tag }}
    {{ photo_form.caption }}
    {{ 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 }}
     Set as album cover
    Delete
    {% empty %}

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

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