@ -1,9 +1,13 @@
{% extends "layout.html" %} {% block body %} {% if book %}
{% 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 %}
< img src = "{{ url_for('get_cover', cover_path=book.path.replace('\\','/')) }}" / > {% else %}
< img src = "{{ url_for('static', filename='generic_cover.jpg') }}" / > {% endif %}
< img src = "{{ url_for('get_cover', cover_path=book.path.replace('\\','/')) }}" / >
{% else %}
< img src = "{{ url_for('static', filename='generic_cover.jpg') }}" / >
{% endif %}
< / div >
< / div >
< div class = "col-sm-8" >
@ -47,20 +51,31 @@
< input type = "text" class = "form-control typeahead" name = "languages" id = "languages" value = "{% for language in book.languages %}{{language.language_name.strip()}}, {% endfor %}" >
< / div >
{% if cc|length > 0 %} {% for c in cc %}
{% if cc|length > 0 %}
{% for c in cc %}
< div class = "form-group" >
< label for = "{{ 'custom_column_' ~ c.id }}" > {{ c.name }}< / label > {% if c.datatype == 'bool' %}
< label for = "{{ 'custom_column_' ~ c.id }}" > {{ c.name }}< / label >
{% 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 %} {% if c.datatype in ['text', 'series'] and not 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="{{ 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 %}> {% endif %} {% if c.datatype == 'enumeration' %}
< / select >
{% endif %}
{% if c.datatype in ['text', 'series'] and not 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="{{ 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 %}>
{% endif %}
{% 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 %}
@ -70,12 +85,18 @@
{% endif %}
>{{ opt }}< / option >
{% endfor %}
< / select > {% endif %} {% if c.datatype == 'rating' %}
< / select >
{% endif %}
{% 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 }}"
{% if book[ 'custom_column_' ~ c.id]|length> 0 %} value="{{ '%d' % (book['custom_column_' ~ c.id][0].value /
2) }}" {% endif %}> {% endif %}
{% if book['custom_column_' ~ c.id]|length > 0 %}
value="{{ '%d' % (book['custom_column_' ~ c.id][0].value / 2) }}"
{% endif %}>
{% endif %}
< / div >
{% endfor %} {% endif %}
{% endfor %}
{% endif %}
< div class = "checkbox" >
@ -83,7 +104,7 @@
< input name = "detail_view" type = "checkbox" checked > {{_('view book after edit')}}
< / label >
< / div >
< a href = "#" id = "get_meta" class = "btn btn-default" data-toggle = "modal" data-target = "#metaModal" > {{_('Get Meta D ata')}}< / a >
< a href = "#" id = "get_meta" class = "btn btn-default" data-toggle = "modal" data-target = "#metaModal" > {{_('Get Metad ata')}}< / a >
< button type = "submit" class = "btn btn-default" > {{_('Submit')}}< / button >
< a href = "{{ url_for('show_book',id=book.id) }}" class = "btn btn-default" > {{_('Back')}}< / a >
< / form >
@ -97,7 +118,7 @@
< h4 class = "modal-title" id = "metaModalLabel" > {{_('Get metadata')}}< / h4 >
< form class = "form-inline" >
< div class = "form-group" >
< label class = "sr-only" for = "keyword" > Keyword< / label >
< label class = "sr-only" for = "keyword" > {{_(' Keyword')}} < / label >
< input type = "text" class = "form-control" id = "keyword" placeholder = "{{_(" Search keyword " ) } } " >
< / div >
< button type = "button" class = "btn btn-default" id = "do-search" > {{_("Go!")}}< / button >
@ -116,6 +137,17 @@
{% endblock %}
{% block js %}
< script >
var i18n_msg = {
'loading': {{_('Loading...')|safe|tojson}},
'search_error': {{_('Search error!')|safe|tojson}},
'no_result': {{_('No Result! Please try anonther keyword.')|safe|tojson}},
'author': {{_('Author')|safe|tojson}},
'publisher': {{_('Publisher')|safe|tojson}},
'description': {{_('Description')|safe|tojson}},
'source': {{_('Source')|safe|tojson}},
};
< / script >
< script src = "{{ url_for('static', filename='js/libs/typeahead.bundle.js') }}" > < / script >
< script src = "{{ url_for('static', filename='js/edit_books.js') }}" > < / script >
< script src = "{{ url_for('static', filename='js/get_meta.js') }}" > < / script >