{% extends 'base.html' %} {% load static %} {% block title %} Phonebook | {{ block.super }} {% endblock %} {% block content %}

{{ camp.title }} Phonebook

This is a list of all the registered DECT numbers in our phonebook for {{ camp.title }}.

{% if request.user.is_authenticated %}

Your DECT Registrations Create DECT Registration

{% endif %} {% if dectregistration_list %} {% for entry in dectregistration_list %} {% endfor %}
Number Letters Description Created
{{ entry.number }} {{ entry.letters|default:"N/A" }} {{ entry.description|default:"N/A" }} {{ entry.created }}
{% else %}

No DECT registrations found

{% endif %} {% endblock %}