{% extends 'base.html' %} {% load static %} {% block title %}Parents & Guardians — Rapha-Bethel BNPS{% endblock %} {% block content %}

Parents & Guardians

{{ page_obj.paginator.count|default:parents|length }} contact{{ page_obj.paginator.count|default:parents|length|pluralize }} on record

Add Parent
{% if request.GET.q %} {% endif %}
{% for parent in parents %} {% empty %} {% endfor %}
Parent / Guardian Relationship Phone Student Actions
{{ parent.first_name|first }}{{ parent.last_name|first }}
{{ parent.first_name }} {{ parent.last_name }}
{% if parent.email %}
{{ parent.email }}
{% endif %}
{{ parent.get_relationship_display }} {{ parent.phone }} {% if parent.alternate_phone %}
{{ parent.alternate_phone }}
{% endif %}
{% if parent.student %} {{ parent.student.first_name }} {{ parent.student.last_name }}
{{ parent.student.current_class|default:"No class" }}
{% else %} No student {% endif %}
{% if parent.phone %} {% endif %}
{% if request.GET.q %}

No parents found matching "{{ request.GET.q }}"

Clear search {% else %}

No parents or guardians on record yet.

Add First Parent {% endif %}
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.number == num %} {{ num }} {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %} {{ num }} {% endif %} {% endfor %} {% if page_obj.has_next %} {% endif %}
{% endif %}
{% endblock %}