2012-02-06 22:08:08 +01:00
|
|
|
{% extends "base-projector.html" %}
|
2012-02-20 20:35:12 +01:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
{% block title %}{{ block.super }} - {{ item.title }}{% endblock %}
|
2012-02-20 20:35:12 +01:00
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
{% block content %}
|
|
|
|
{% if item.text %}
|
|
|
|
<h1>{{ item.title }}</h1>
|
2011-09-21 21:23:00 +02:00
|
|
|
{{ item.text|safe|linebreaks }}
|
2011-07-31 10:46:29 +02:00
|
|
|
{% else %}
|
|
|
|
<div class="item_fullscreen">{{ item.title }}</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|