{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Copy Object" %}{% endblock %} {% block smallheader %}{% trans "Copy" %}{% endblock %} {% block largeheader %}{{ object.object_type }}{% endblock %} {% block nav1 %}{% trans "Object Browser" %}{% endblock %} {% block toolbar %}{% endblock %} {% block content %} {% if success %} {% for i in copied_objects %}
{% trans "Success!" %} {% url edit_object i.id as the_url %} {% blocktrans with type=i.object_type desc=u.description file=i.filename %} {{ type }} "{{ desc }}" was successfully saved to {{ file }}. {% endblocktrans %}
{% endfor %} {% else %}
{% blocktrans with type=i.object_type desc=u.description %} You are about to copy {{ type }} "{{ desc }}". {% endblocktrans %}

{% csrf_token %} {% include "bootstrap_fields.html" with fields=form %}
{% endif %} {% endblock %}