{% extends "layout.html" %} {% from "macros.html" import render_field, form_tag %} {% block content %}
{% call form_tag(form, enctype="multipart/form-data") %}

Organisation Logo

{% if current_user.organisation.logo %} Organisation Logo {% endif %} {{ render_field(form.logo_file) }} {{ form.upload }} {{ form.reset }} {#{ form.cancel }#} {% endcall %}

The logo image dimentions should be close to 100px, upto 200px at most.

{% endblock %}