{% extends "base.html" %} {% block title %}Options | Notifications{% endblock %} {% block heading %}{% endblock %} {% block pageid %}userprofile{% endblock %} {% load static %} {% block headcontents %} {{ block.super }} {% endblock %} {% block content %} {% if messages %}
{% for m in messages %}

{{ m }}

{% endfor %}
{% endif %} {# Show contacts and notification to internal users only#} {% if user_is_internal %}

Contacts

{% if contacts %} {% endif %} Create new contact

Notifications

{% if notifications %} {% endif %} Create new notification

{% endif %} {# Show password page only to LV-EM users who are not also internal #} {# But let the admins (superusers) see it with some additions #} {% if user_is_lvem and not user_is_internal or user.is_superuser %} {% if user.is_superuser %}

The following section is only visible to non-internal LV-EM members. You can see it (and this message) because you are a superuser.

{% endif %}

Passwords for Scripted Access

Manage password {% endif %} {% endblock %}