{% extends "imagestore/base.html" %} {% load i18n %} {% load thumbnail %} {% block title %} {% trans "Upload image" %} {% endblock %} {% block head %} {{ block.super }} {% endblock %} {% block breadcrumb %} {{ block.super }} » {% trans "Gallery" %} » {% endblock breadcrumb %} {% block content %}

{% trans "Upload image" %}

{% csrf_token %}
{{ form.album.label_tag }} {{ form.album.errors }} {{ form.album }}
{{ form.image.label_tag }} {{ form.image.errors }} {{ form.image }}
{{ form.tags.label_tag }} {{ form.tags.errors }} {{ form.tags }}
{{ form.title.label_tag }} {{ form.title.errors }} {{ form.title }}
{{ form.place_text.label_tag }} {{ form.place_text.errors }} {{ form.place_text }}
{{ form.description.label_tag }}
{{ form.description.errors }} {{ form.description }}
{% endblock content %}