{% extends 'base.html' %} {% load static %} {% block title %}Parents & Guardians — Rapha-Bethel BNPS{% endblock %} {% block content %}
{{ page_obj.paginator.count|default:parents|length }} contact{{ page_obj.paginator.count|default:parents|length|pluralize }} on record
| 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 request.GET.q %}
No parents found matching "{{ request.GET.q }}" Clear search {% else %}No parents or guardians on record yet. Add First Parent {% endif %} |
||||