{% extends 'base.html' %} {% block main %} {% from "_formhelpers.html" import render_field %}
back
{{ form.csrf_token }}

{{ form.title.label }} {{ form.title(size=20, class="form-control") }}


{{ form.author.label }}*: {% for author in form.author %} {% endfor %}
{{ author.author_name (size=50, class="form-control") }}


Category:*
{{ form.category(size=50, class="form-control") }}

Year published:
{{ form.year_published(size=8, class="form-control") }}

How different is this item to the rest of the collection? Or is it more of the same?
{{ form.sameness(min=0, max=100, oninput="outputUpdate(value)") }}   {{ form.sameness.data }} % different


Check the bibliography. How diverse are the references in this book?
{{ form.diversity(min=0, max=100, oninput="outputUpdate2(value)") }}   {{ form.diversity.data }} % diverse


Check the writing. Who is speaking? Is the voice more often male or female?
{{ form.gender(min=1, max=100, oninput="outputUpdate3(value)") }}   {{ form.gender.data }} % female


Who are you? {{ render_field(form.who)}}


Current file: {{ book.file }}      Upload new file: {{form.file}}
If uploading, write a new message:
{{form.message(size=135, class="form-control") }}

{% endblock %}