summaryrefslogtreecommitdiff
path: root/sublab_project/news/templates/news/news_image.html
blob: 3c490c6968a4b75237f34ca15d4fb081139ace41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends 'base.html' %}
{% load thumbnail %}

{% block title %}Bild: {{ object.title }}{% endblock %}

{% block content %}
    <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" />
        {% endthumbnail %}
    </div>
    <p><a href="{{ object.get_absolute_url }}">Zurück zum Artikel</a></p>
{% endblock content %}