{% extends "bootstrap/base.html" %} {% import 'bootstrap/utils.html' as utils %} {% import 'bootstrap/wtf.html' as wtf %} {% import 'macros/imagethumb.html' as imagethumb %} {% block title %}{{ config.SITE_NAME }}{% endblock title %} {% block content %}

{{ config.SITE_NAME }}

{{ utils.flashed_messages(container=False) }}
{{ form.hidden_tag() }} {{ wtf.form_errors(form, hiddens="only") }} {{ imagethumb.field(form.image, model.image, delete_field=(model.image and form.image_delete or none), storage_type=model.image_storage_type, bucket_name=model.image_storage_bucket_name) }} {% if model.image %}

View original

{% endif %}
{% endblock content %}