OpenSlides/openslides/templates/front_page.html

18 lines
404 B
HTML
Raw Normal View History

2012-04-15 11:24:40 +02:00
{% extends "base.html" %}
{% load i18n %}
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 %}