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

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

{% block content %}
    <h2>Bild: {{ object.name }}</h2>
    <div>
        {% thumbnail object.image "820" upscale=False as image %}
        <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 Projekt</a></p>
{% endblock content %}