{% 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 redis_error %}

Redis Connection Error

Connection to the Redis server failed; some features of Kegbot may not work correctly until it is fixed.

Error message was: {{ redis_error }}

{% endif %} {% if DEBUG %}

Warning: Debug Mode

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 Configuration Problem

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 %}