qrurls/templates/qrurls/image.html
author Tero Marttila <terom@fixme.fi>
Wed, 21 Aug 2013 02:14:24 +0300
changeset 53 8e6e7ca39e48
parent 52 bb851151e956
child 59 560beb75655f
permissions -rw-r--r--
split cmpuqrct/templates with base and analytics
{% extends "base.html" %}
{% load staticfiles %}

{% block title %}{{ title }}{% endblock %}
{% block head %}
    <link rel="stylesheet" type="text/css" href="{% static 'qrurls/images.css' %}" />
{% endblock %}

{% block body %}
    <div class="container">
        <img src="{{ image.get_absolute_url }}" title="{{ title }}" />
        <div class="footer">
            {{ title }}
        </div>
    </div>
{% endblock %}