OpenSlides/openslides/templates/front_page.html

17 lines
339 B
HTML
Raw Normal View History

2012-04-15 11:24:40 +02:00
{% extends "base.html" %}
{% load i18n %}
{% block title %}{{ block.super }} {{ item.title }}{% endblock %}
{% block content %}
<h1>{% trans 'Wellcome' %}</h1>
{{ wellcome_text|safe }}
<ul>
{% for app in apps %}
<li><a href="{{ app.url }}">{{ app.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}