{% extends 'layouts/app.html' %} {% import 'macros/form.html'as f with context %} {% block body %}
{% if request.endpoint == 'library.new' %} {% set title='New Book' %} {% set endpoint='library.new' %} {% set kw = {} %} {% else %} {% set title='Edit Book' %} {% set endpoint='library.edit_book' %} {% set kw = {'book_id': book.id, 'title': book.title, 'genre': book.genre.title}%} {% endif %} {% call f.form_tag(endpoint, enctype='multipart/form-data', **kw) %}

{{ title }}

{% call f.form_group(form.title, placeholder="Enter Title") %} {% endcall %} {% call f.form_group(form.desc, rows='12') %} {% endcall %}
{% call f.form_group(form.icon, css_class='col-md-6', isCustomUpload=True, id='icon') %} {% endcall %} {% call f.form_group(form.book, css_class='col-md-6', isCustomUpload=True, id='book') %} {% endcall %}
{% call f.form_group(form.genre) %} {% endcall %} {% call f.form_group(form.new_genre) %} {% endcall %} Cancel {% endcall %}
{% endblock %}