{% 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 %} {% for contact in contacts %} {% endfor %}
{% if contact.verified %} Test {% else %} {% endif %} Edit Delete {{ contact.description }} | {{ contact.display }} {% if contact.verified %}
Verified
{% else %}
Not verified
Verify {% endif %}
{% endif %} Create new contact

Notifications

{% if notifications %} {% for notification in notifications %} {% endfor %}
Edit Delete {{ notification.description }} | {{ notification.display }}
{% endif %} Create new notification {% endif %} {% endblock %}