{% extends "kegadmin/base.html" %} {% load kegweblib %} {% load crispy_forms_tags %} {% block title %}Kegbot Admin | {{ block.super }}{% endblock %} {% block pagetitle %}Kegbot Admin{% endblock %} {% block kegadmin-main %} {% if DEBUG %}

Warning!

Kegbot Server is running in DEBUG mode. For performance and security reasons, you should disable DEBUG mode by setting DEBUG = False in local_settings.py.
{% endif %} {% if not email_configured %}

Warning!

E-mail is not properly configured; no mails will be sent. Please read the docs for more information (hint: set EMAIL_BACKEND and EMAIL_FROM_ADDRESS in local_settings.py).
{% endif %} {% if checkin %} {% for news in checkin.news %}

{{ news.title }}

{{ news.body }}
{% endfor %} {% endif %} {% endblock %}