mirror of
				https://github.com/janeczku/calibre-web
				synced 2025-11-04 09:13:02 +00:00 
			
		
		
		
	Bugfix view shelfs on book detail page
This commit is contained in:
		@@ -226,7 +226,7 @@
 | 
			
		||||
          </button>
 | 
			
		||||
          <ul id="add-to-shelves" class="dropdown-menu" aria-labelledby="add-to-shelf">
 | 
			
		||||
            {% for shelf in g.shelves_access %}
 | 
			
		||||
              {% if not shelf.id in books_shelfs %}
 | 
			
		||||
              {% if not shelf.id in books_shelfs and ( not shelf.is_public or g.user.role_edit_shelfs() ) %}
 | 
			
		||||
                <li>
 | 
			
		||||
                  <a href="{{ url_for('shelf.add_to_shelf', book_id=entry.id, shelf_id=shelf.id) }}"
 | 
			
		||||
                     data-remove-href="{{ url_for('shelf.remove_from_shelf', book_id=entry.id, shelf_id=shelf.id) }}"
 | 
			
		||||
@@ -247,7 +247,9 @@
 | 
			
		||||
                   data-add-href="{{ url_for('shelf.add_to_shelf', book_id=entry.id, shelf_id=shelf.id) }}"
 | 
			
		||||
                   class="btn btn-sm btn-default" role="button" data-shelf-action="remove"
 | 
			
		||||
                >
 | 
			
		||||
                  <span class="glyphicon glyphicon-remove"></span> {{shelf.name}}
 | 
			
		||||
                  <span {% if not shelf.is_public or g.user.role_edit_shelfs() %}
 | 
			
		||||
                        class="glyphicon glyphicon-remove"
 | 
			
		||||
                        {% endif %}></span> {{shelf.name}}
 | 
			
		||||
                </a>
 | 
			
		||||
              {% endif %}
 | 
			
		||||
            {%endfor%}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user