2012-02-06 22:08:08 +01:00
|
|
|
{% extends "base-projector.html" %}
|
2012-02-20 20:35:12 +01:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
2013-06-14 20:24:48 +02:00
|
|
|
{% block title %}{{ item }}{% endblock %}
|
2012-02-20 20:35:12 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
{% block content %}
|
2012-06-19 10:19:43 +02:00
|
|
|
{% if item.text %}
|
2012-04-19 12:46:04 +02:00
|
|
|
<h1>{{ item }}</h1>
|
2011-07-31 10:46:29 +02:00
|
|
|
{% else %}
|
2012-04-19 12:46:04 +02:00
|
|
|
<div class="item_fullscreen">{{ item }}</div>
|
2011-07-31 10:46:29 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2012-04-24 22:27:16 +02:00
|
|
|
|
|
|
|
{% block scrollcontent %}
|
2012-06-19 10:19:43 +02:00
|
|
|
{% if item.text %}
|
|
|
|
<span>{{ item.text|safe|linebreaks }}</span>
|
2012-04-24 22:27:16 +02:00
|
|
|
{% endif %}
|
2012-06-19 10:19:43 +02:00
|
|
|
{% endblock %}
|