mirror of
				https://github.com/janeczku/calibre-web
				synced 2025-11-04 09:13:02 +00:00 
			
		
		
		
	Always use full-sized image for book edit and details pages
This commit is contained in:
		@@ -114,9 +114,8 @@ def create_app():
 | 
			
		||||
 | 
			
		||||
    if os.environ.get('FLASK_DEBUG'):
 | 
			
		||||
        cache_buster.init_cache_busting(app)
 | 
			
		||||
        cache_buster.init_cache_busting(app)
 | 
			
		||||
 | 
			
		||||
    log.info('Starting Calibre Web...')
 | 
			
		||||
 | 
			
		||||
    Principal(app)
 | 
			
		||||
    lm.init_app(app)
 | 
			
		||||
    app.secret_key = os.getenv('SECRET_KEY', config_sql.get_flask_session_key(ub.session))
 | 
			
		||||
 
 | 
			
		||||
@@ -40,7 +40,7 @@ from sqlalchemy.orm.attributes import flag_modified
 | 
			
		||||
from sqlalchemy.exc import IntegrityError, OperationalError, InvalidRequestError
 | 
			
		||||
from sqlalchemy.sql.expression import func, or_, text
 | 
			
		||||
 | 
			
		||||
from . import constants, logger, helper, services, isoLanguages
 | 
			
		||||
from . import constants, logger, helper, services
 | 
			
		||||
from . import db, calibre_db, ub, web_server, get_locale, config, updater_thread, babel, gdriveutils, schedule
 | 
			
		||||
from .helper import check_valid_domain, send_test_mail, reset_password, generate_password_hash, check_email, \
 | 
			
		||||
    valid_email, check_username
 | 
			
		||||
 
 | 
			
		||||
@@ -1,10 +1,10 @@
 | 
			
		||||
{% import 'image.html' as image %}
 | 
			
		||||
{% extends "layout.html" %}
 | 
			
		||||
{% block body %}
 | 
			
		||||
{% if book %}
 | 
			
		||||
  <div class="col-sm-3 col-lg-3 col-xs-12">
 | 
			
		||||
    <div class="cover">
 | 
			
		||||
        {{ image.book_cover(book) }}
 | 
			
		||||
        <!-- Always use full-sized image for the book edit page -->
 | 
			
		||||
        <img id="detailcover" title="{{book.title}}" src="{{url_for('web.get_cover', book_id=book.id, resolution='og', c=book|last_modified)}}" />
 | 
			
		||||
    </div>
 | 
			
		||||
{% if g.user.role_delete_books() %}
 | 
			
		||||
    <div class="text-center">
 | 
			
		||||
 
 | 
			
		||||
@@ -4,7 +4,8 @@
 | 
			
		||||
  <div class="row">
 | 
			
		||||
    <div class="col-sm-3 col-lg-3 col-xs-5">
 | 
			
		||||
      <div class="cover">
 | 
			
		||||
          {{ image.book_cover(entry) }}
 | 
			
		||||
        <!-- Always use full-sized image for the detail page -->
 | 
			
		||||
        <img id="detailcover" title="{{book.title}}" src="{{url_for('web.get_cover', book_id=book.id, resolution='og', c=book|last_modified)}}" />
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col-sm-9 col-lg-9 book-meta">
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user