You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div class="col-sm-8 col-lg-8 col-xs-12">
|
|
<h2>{{title}}</h2>
|
|
<div>{{_('Drag to Rearrange Order')}}</div>
|
|
<div id="sortTrue" class="list-group">
|
|
{% for entry in entries %}
|
|
<div id="{{entry['id']}}" class="list-group-item">
|
|
<div class="row">
|
|
<div class="col-lg-2 col-sm-4 hidden-xs">
|
|
<img class="cover-height" src="{{ url_for('web.get_cover', book_id=entry['id']) }}">
|
|
</div>
|
|
<div class="col-lg-10 col-sm-8 col-xs-12">
|
|
{{entry['title']}}
|
|
{% if entry['series']|length > 0 %}
|
|
<br>
|
|
{{entry['series_index']}} - {{entry['series'][0].name}}
|
|
{% endif %}
|
|
<br>
|
|
{% for author in entry['authors'] %}
|
|
{{author.name.replace('|',',')}}
|
|
{% if not loop.last %}
|
|
&
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<button onclick="sendData('{{ url_for('shelf.order_shelf', shelf_id=shelf.id) }}')" class="btn btn-default" id="ChangeOrder">{{_('Change order')}}</button>
|
|
<a href="{{ url_for('shelf.show_shelf', shelf_id=shelf.id) }}" id="shelf_back" class="btn btn-default">{{_('Back')}}</a>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{{ url_for('static', filename='js/libs/Sortable.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/shelforder.js') }}"></script>
|
|
{% endblock %}
|