home.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. {% extends "bootstrap/base.html" %}
  2. {% import 'bootstrap/utils.html' as utils %}
  3. {% import 'bootstrap/wtf.html' as wtf %}
  4. {% import 'macros/imagethumb.html' as imagethumb %}
  5. {% block title %}{{ config.SITE_NAME }}{% endblock title %}
  6. {% block content %}
  7. <div class="container-fluid" style="max-width: 960px">
  8. <div class="row">
  9. <div class="col-sm-12">
  10. <h1><a href="{{ url_for('foo.home') }}">{{ config.SITE_NAME }}</a></h1>
  11. {{ utils.flashed_messages(container=False) }}
  12. <form class="form" method="post" enctype="multipart/form-data" action="{{ url_for('foo.home') }}" role="form">
  13. {{ form.hidden_tag() }}
  14. {{ wtf.form_errors(form, hiddens="only") }}
  15. {{ 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) }}
  16. {% if model.image %}
  17. <p><a href="{{ model.image_url_storageaware }}">View original</a></p>
  18. {% endif %}
  19. <button type="submit" class="btn btn-default">Save</button>
  20. </form>
  21. </div>
  22. </div>
  23. </div>
  24. {% endblock content %}