{% extends "base.html" %} {% block title %}Alyssa and Ben's Wedding: Upload Photos{% endblock %} {% block header %}

Upload Photos

{% endblock %} {% block content %}

You may upload a ZIP file of photos here and they will appear in a gallery accessible to other guests.

There are still some defects with this system that I hope to fix soon. In particular, you'll need to have the photos already rotated as this app does not yet automatically rotate photos.

{% for field in form %} {% if not field.is_hidden %}
{{ field.label_tag }}
{{ field }} {{ field.errors }}
{% endif %} {% endfor %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %}

(This application is based on django-photologue.)


{% endblock %}