2015-08-02 18:59:11 +00:00
{% extends "layout.html" %}
{% block body %}
{% if book %}
< div class = "col-sm-3 col-lg-3 col-xs-12" >
< div class = "cover" >
{% if book.has_cover is defined %}
< img src = "{{ url_for('get_cover', cover_path=book.path) }}" / >
{% endif %}
< / div >
< / div >
< div class = "col-sm-8" >
< form role = "form" action = "{{ url_for('edit_book', book_id=book.id) }}" method = "post" >
< div class = "form-group" >
2016-11-09 18:24:33 +00:00
< label for = "book_title" > {{_('Book Title')}}< / label >
2015-08-02 18:59:11 +00:00
< input type = "text" class = "form-control" name = "book_title" id = "book_title" value = "{{book.title}}" >
< / div >
< div class = "form-group" >
2016-11-09 18:24:33 +00:00
< label for = "bookAuthor" > {{_('Author')}}< / label >
2016-04-15 21:35:18 +00:00
< input type = "text" class = "form-control typeahead" name = "author_name" id = "bookAuthor" value = "{{' & '.join(authors)}}" autocomplete = "off" >
2015-08-02 18:59:11 +00:00
< / div >
< div class = "form-group" >
2016-11-09 18:24:33 +00:00
< label for = "description" > {{_('Description')}}< / label >
2015-08-02 18:59:11 +00:00
< textarea class = "form-control" name = "description" id = "description" rows = "7" > {% if book.comments %}{{book.comments[0].text}}{%endif%}< / textarea >
< / div >
< div class = "form-group" >
2016-11-09 18:24:33 +00:00
< label for = "tags" > {{_('Tags')}}< / label >
< input type = "text" class = "form-control typeahead" name = "tags" id = "tags" value = "{% for tag in book.tags %}{{tag.name.strip()}}, {% endfor %}" >
2015-08-02 18:59:11 +00:00
< / div >
< div class = "form-group" >
2016-11-09 18:24:33 +00:00
< label for = "series" > {{_('Series')}}< / label >
< input type = "text" class = "form-control typeahead" name = "series" id = "series" value = "{% if book.series %}{{book.series[0].name}}{% endif %}" >
2015-08-02 18:59:11 +00:00
< / div >
< div class = "form-group" >
2016-11-09 18:24:33 +00:00
< label for = "series_index" > {{_('Series id')}}< / label >
2015-08-02 18:59:11 +00:00
< input type = "text" class = "form-control" name = "series_index" id = "series_index" value = "{{book.series_index}}" >
< / div >
< div class = "form-group" >
2016-11-09 18:24:33 +00:00
< label for = "rating" > {{_('Rating')}}< / label >
2017-01-03 18:29:33 +00:00
< input type = "number" min = "0" max = "5" step = "1" class = "form-control" name = "rating" id = "rating" value = "{% if book.ratings %}{{book.ratings[0].rating / 2}}{% endif %}" >
2015-08-02 18:59:11 +00:00
< / div >
< div class = "form-group" >
2016-11-09 18:24:33 +00:00
< label for = "cover_url" > {{_('Cover URL (jpg)')}}< / label >
2015-08-02 18:59:11 +00:00
< input type = "text" class = "form-control" name = "cover_url" id = "cover_url" value = "" >
< / div >
2016-11-09 18:24:33 +00:00
< div class = "form-group" >
< label for = "languages" > {{_('Language')}}< / label >
< input type = "text" class = "form-control typeahead" name = "languages" id = "languages" value = "{% for language in book.languages %}{{language.language_name.strip()}}, {% endfor %}" >
< / div >
2016-04-19 22:20:02 +00:00
{% if cc|length > 0 %}
{% for c in cc %}
< div class = "form-group" >
< label for = "{{ 'custom_column_' ~ c.id }}" > {{ c.name }}< / label >
2016-11-09 18:24:33 +00:00
{% if c.datatype == 'bool' %}
< select name = "{{ 'custom_column_' ~ c.id }}" id = "{{ 'custom_column_' ~ c.id }}" class = "form-control" >
< option value = "None" { % if book [ ' custom_column_ ' ~ c . id ] | length = = 0 % } selected { % endif % } > < / option >
< option value = "True" { % if book [ ' custom_column_ ' ~ c . id ] | length > 0 %}{% if book['custom_column_' ~ c.id][0].value ==true %}selected{% endif %}{% endif %} >{{_('Yes')}}< / option >
< option value = "False" { % if book [ ' custom_column_ ' ~ c . id ] | length > 0 %}{% if book['custom_column_' ~ c.id][0].value ==false %}selected{% endif %}{% endif %}>{{_('No')}}< / option >
< / select >
{% endif %}
2016-04-21 17:18:52 +00:00
{% if c.datatype in ['text', 'series'] and not c.is_multiple %}
2016-04-20 16:56:03 +00:00
< input type = "text" class = "form-control" name = "{{ 'custom_column_' ~ c.id }}" id = "{{ 'custom_column_' ~ c.id }}"
{% if book['custom_column_' ~ c.id]|length > 0 %}
2016-04-21 17:18:52 +00:00
value="{{ book['custom_column_' ~ c.id][0].value }}"
{% endif %}>
{% endif %}
{% if c.datatype in ['text', 'series'] and c.is_multiple %}
< input type = "text" class = "form-control" name = "{{ 'custom_column_' ~ c.id }}" id = "{{ 'custom_column_' ~ c.id }}"
{% if book['custom_column_' ~ c.id]|length > 0 %}
value="{% for column in book['custom_column_' ~ c.id] %}{{ column.value.strip() }}{% if not loop.last %}, {% endif %}{% endfor %}"{% endif %}>
2016-04-19 22:20:02 +00:00
{% endif %}
2016-04-20 16:56:03 +00:00
{% if c.datatype == 'enumeration' %}
< select class = "form-control" name = "{{ 'custom_column_' ~ c.id }}" id = "{{ 'custom_column_' ~ c.id }}" >
< option > < / option >
{% for opt in c.get_display_dict().enum_values %}
< option
{% if book['custom_column_' ~ c.id]|length > 0 %}
{% if book['custom_column_' ~ c.id][0].value == opt %}selected="selected"{% endif %}
{% endif %}
>{{ opt }}< / option >
{% endfor %}
< / select >
{% endif %}
2016-11-09 18:24:33 +00:00
2016-04-20 21:53:55 +00:00
{% if c.datatype == 'rating' %}
< input type = "number" min = "1" max = "5" step = "1" class = "form-control" name = "{{ 'custom_column_' ~ c.id }}" id = "{{ 'custom_column_' ~ c.id }}"
2016-04-20 16:56:03 +00:00
{% if book['custom_column_' ~ c.id]|length > 0 %}
2016-04-21 10:59:49 +00:00
value="{{ '%d' % (book['custom_column_' ~ c.id][0].value / 2) }}"
2016-04-20 21:53:55 +00:00
{% endif %}>
2016-04-20 16:56:03 +00:00
{% endif %}
< / div >
2016-04-19 22:20:02 +00:00
{% endfor %}
{% endif %}
2015-08-02 18:59:11 +00:00
< div class = "checkbox" >
< label >
2016-11-09 18:24:33 +00:00
< input name = "detail_view" type = "checkbox" checked > {{_('view book after edit')}}
2015-08-02 18:59:11 +00:00
< / label >
< / div >
2016-11-09 18:24:33 +00:00
< button type = "submit" class = "btn btn-default" > {{_('Submit')}}< / button >
2016-11-12 09:52:59 +00:00
< a href = "{{ url_for('show_book',id=book.id) }}" class = "btn btn-default" > {{_('Back')}}< / a >
2015-08-02 18:59:11 +00:00
< / form >
< / div >
{% endif %}
{% endblock %}
2016-04-15 21:35:18 +00:00
{% block js %}
< script src = "{{ url_for('static', filename='js/typeahead.bundle.js') }}" > < / script >
< script src = "{{ url_for('static', filename='js/edit_books.js') }}" > < / script >
{% endblock %}
{% block header %}
< link href = "{{ url_for('static', filename='css/typeahead.css') }}" rel = "stylesheet" media = "screen" >
{% endblock %}