{% extends 'base.html' %} {% load static %} {% block title %} Your DECT Registrations | {{ block.super }} {% endblock %} {% block content %}
Your {{ camp.title }} DECT Registrations

This is a list of all the registered DECT numbers you have for {{ camp.title }}. To activate a handset just dial the activation code from the handset and follow instructions.

{% if dectregistration_list %}

Phonebook Create DECT Registration

{% for entry in dectregistration_list %} {% endfor %}
Number Letters Description Publish in Phonebook Activation Code Created Modified Actions
{{ entry.number }} {{ entry.letters|default:"N/A" }} {{ entry.description|default:"N/A" }} {{ entry.publish_in_phonebook|yesno }} {{ entry.activation_code }} {{ entry.created }} {{ entry.updated }} Update Delete
{% else %}

No DECT registrations found. Go create one!

Phonebook Create DECT Registration

{% endif %}
{% endblock %}