{% extends "base.html" %} {% block copyright %} {% endblock %} {% block title %}Upload Complete{% endblock %} {% block extra_head %} {% endblock %} {% block body %}

Upload Complete


{% if uploaded_images %} {% if uploaded_images|length == 1 %} 1 image was uploaded successfully. {% else %} {{ uploaded_images|length }} images were uploaded successfully. {% endif %}

View the upload folder
Upload another image

{% else %} You don't seem to have uploaded any images recently.

Browse images
Upload an image

{% endif %} {% for image in uploaded_images %}
{% if settings['IMAGE_UPLOADED_TEMPLATE'] %} {% else %} {% endif %} View image details
Publish this image

HTML snippets:
<!-- To embed in a web page -->
{% if settings['IMAGE_UPLOADED_TEMPLATE'] %}
<img src="{{ external_url_for('image', src=image.src) }}&tmp={{settings['IMAGE_UPLOADED_TEMPLATE']}}">
{% else %}
<img src="{{ url_for_thumbnail(src=image.src, external=True) }}">
{% endif %}
<!-- To link to the original image -->
<img src="{{ external_url_for('original', src=image.src) }}">
{% endfor %} {% if uploaded_images %}
For more information and to see all HTML image options, see the user's guide.
{% endif %} {% endblock %}