OpenSlides/openslides/templates/front_page.html

30 lines
759 B
HTML
Raw Normal View History

2012-04-15 11:24:40 +02:00
{% extends "base.html" %}
{% load i18n %}
{% load staticfiles %}
2012-04-15 11:24:40 +02:00
2012-04-15 13:26:01 +02:00
{% block title %}{{ block.super }} {% trans "Home" %}{% endblock %}
2012-04-15 11:24:40 +02:00
{% block content %}
2012-04-15 13:26:01 +02:00
<h1>{{ title }}</h1>
<p>{{ welcometext|safe|linebreaks }}</p>
{% trans "You have access to the following pages:" %}
2012-04-15 11:24:40 +02:00
<ul>
{% for app in apps %}
<li><a href="{{ app.url }}">{{ app.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}
{% block submenu %}
{% if perms.projector.can_see_projector %}
<h4 class="sectiontitle">{% trans "Home" %}</h4>
<ul>
<li>
<a href="{% url projector_show %}"><img src="{% static 'images/icons/projector.png' %}"> {% trans 'Projector view' %}</a>
</li>
</ul>
{% endif %}
{% endblock %}