2012-02-20 20:35:12 +01:00
|
|
|
|
{% load tags %}
|
2013-08-04 12:59:11 +02:00
|
|
|
|
{% load i18n %}
|
2012-04-14 14:51:56 +02:00
|
|
|
|
{% load staticfiles %}
|
2012-02-20 20:35:12 +01:00
|
|
|
|
|
2013-05-30 14:41:22 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{LANGUAGE_CODE}}">
|
2012-02-20 20:35:12 +01:00
|
|
|
|
<head>
|
2013-09-07 10:14:54 +02:00
|
|
|
|
<link href="{% static 'styles/bootstrap.min.css' %}" type="text/css" rel="stylesheet">
|
2013-10-23 17:08:08 +02:00
|
|
|
|
<link href="{% static 'styles/projector.css' %}" type="text/css" rel="stylesheet">
|
2013-09-07 10:14:54 +02:00
|
|
|
|
<link href="{% static 'img/favicon.png' %}" type="image/png" rel="shortcut icon">
|
|
|
|
|
<title>{% trans 'Projector' %} – {{ 'event_name'|get_config }}</title>
|
2012-02-20 20:35:12 +01:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="header">
|
2013-09-07 10:14:54 +02:00
|
|
|
|
<a title="Startseite" id="logo" href="/"><img alt="Logo" src="/static/img/logo.png"></a>
|
|
|
|
|
<div class="pull-right"></div>
|
2012-02-20 20:35:12 +01:00
|
|
|
|
</div>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
|
2012-04-16 16:35:30 +02:00
|
|
|
|
<div id="overlays">
|
2013-08-04 12:59:11 +02:00
|
|
|
|
{{ overlays }}
|
2012-03-16 12:28:42 +01:00
|
|
|
|
</div>
|
2011-11-09 21:16:02 +01:00
|
|
|
|
|
2013-08-04 12:59:11 +02:00
|
|
|
|
<div id="content" {% if reload %}class="reload"{% endif %}>
|
|
|
|
|
{{ content }}
|
2012-02-20 20:35:12 +01:00
|
|
|
|
</div>
|
2013-09-07 10:14:54 +02:00
|
|
|
|
|
|
|
|
|
<div id="footer">
|
|
|
|
|
<div class="event_name_description">
|
|
|
|
|
{{ 'event_name'|get_config }} | {{ 'event_description'|get_config }}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="event_date_location">
|
|
|
|
|
{% if 'event_date'|get_config %}
|
|
|
|
|
{{ 'event_date'|get_config }}{% if 'event_location'|get_config %}, {{ 'event_location'|get_config }}{% endif %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2013-08-04 12:59:11 +02:00
|
|
|
|
<script type="text/javascript" src="{% static 'javascript/jquery.min.js' %}"></script>
|
|
|
|
|
<script type="text/javascript" src="{% static 'javascript/projector.js' %}"></script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
{% for js in overlay_js %}
|
|
|
|
|
projector.update_data({{ js|safe }});
|
|
|
|
|
{% endfor %}
|
2013-10-17 15:32:54 +02:00
|
|
|
|
{% for key, value in calls.items %}
|
|
|
|
|
projector.{{ key }}({{ value }});
|
|
|
|
|
{% endfor %}
|
2013-08-04 12:59:11 +02:00
|
|
|
|
</script>
|
2012-02-20 20:35:12 +01:00
|
|
|
|
</body>
|
2011-07-31 10:46:29 +02:00
|
|
|
|
</html>
|