{% extends 'roycebulksms/base.html' %} {% block content %}
{% csrf_token %}
{{ form.group_name }}
{{ form.first_name }}
{{ form.other_names }}
{{ form.phone_number }}
{{ form.alt_phone_number }}
{{ form.email }}


{%for contact in contacts %} {% endfor %}
Group First Name Other Name Phone Alt. Phone Email Date Action
{{contact.group_id.group_name}} {{contact.first_name}} {{contact.other_name}} {{contact.phone_number}} {{contact.alt_phone_number}} {{contact.email}} {{contact.created_at}} Delete
{% endblock %}