{% extends "users/base.html" %} {% load crispy_forms_tags %} {% block content %} {% if request.user.profile.agency.module_messages %}

Mitteilungen{% if request.user.profile.showtooltips %} {% endif %}


Mitteilung senden{% if request.user.profile.showtooltips %} {% endif %}
{% csrf_token %} {{form|crispy}}

Ihrer Mitteilung wird Automatisch eine Anrede und eine Verabscheidung hinzugefügt!

  Abbrechen
Meine Mitteilungen{% if request.user.profile.showtooltips %} {% endif %}
{% if usermessages|length > 0 %}
{% for item in usermessages %} {% endfor %}
Absender Datum Inhalt  
{{ item.created_by.first_name }} {{ item.created_by.last_name }} {{ item.created_date }} {{ item.content|truncatechars:30 }}
{% else %} Sie haben aktuell keine Mitteilungen. {% endif %}
{% else %}

Das Modul Mitteilungen wurde in ihrer Agentur deaktiviert.

{% endif %} {% endblock content %}