diff options
-rw-r--r-- | conf/dev_settings.py | 2 | ||||
-rw-r--r-- | sublab_project/news/templates/news/news_image.html | 2 | ||||
-rw-r--r-- | sublab_project/static/css/sublab.css | 8 |
3 files changed, 3 insertions, 9 deletions
diff --git a/conf/dev_settings.py b/conf/dev_settings.py index 6d3c702..64ef83e 100644 --- a/conf/dev_settings.py +++ b/conf/dev_settings.py @@ -28,3 +28,5 @@ LOGGING['loggers'].update({ }) SESSION_ENGINE = 'django.contrib.sessions.backends.db' + +THUMBNAIL_DEBUG = True diff --git a/sublab_project/news/templates/news/news_image.html b/sublab_project/news/templates/news/news_image.html index 3c490c6..cac6bdc 100644 --- a/sublab_project/news/templates/news/news_image.html +++ b/sublab_project/news/templates/news/news_image.html @@ -7,7 +7,7 @@ <h2>Bild: {{ object.title }}</h2> <div> {% thumbnail object.image "820" upscale=False as image %} - <img src="{{ image.url }}" width="{{ image.width }}" height="{{ image.height }}" align="left" /> + <img src="{{ image.url }}" style="max-width:{{ image.width }}px; max-height:{{ image.height }}px;" class="contentimage" /> {% endthumbnail %} </div> <p><a href="{{ object.get_absolute_url }}">Zurück zum Artikel</a></p> diff --git a/sublab_project/static/css/sublab.css b/sublab_project/static/css/sublab.css index a08bfec..b4f6127 100644 --- a/sublab_project/static/css/sublab.css +++ b/sublab_project/static/css/sublab.css @@ -149,14 +149,6 @@ img.webcamthumb { border: 2px solid #444; } -img.bigimage { - width: 100%; - max-width: 640px; - margin-left: auto; - margin-right: auto; - display: block; - } - .floatright { float: right; } |