{% extends "base.html" %} {% load static %} {% block body_class %}template-qrcodepage{% endblock %} {% block extra_css %} {% comment %} This block is here to add some basic CSS for the page and isn't required for the QR code package. {% endcomment %} {% endblock extra_css %} {% block content %}
This is a page with a QR Code
The page as an id of {{ page.id }}
The generated QR Code
{{ page.qr_code_svg|safe }}
Download {{ page.qr_code_eps }}
This is only an page to demostrate the QR Code package.
It's not intened that the QR Code is displayed on the site, but hey why not!
{% endblock %}