{% extends "basic_app/basic_app_base.html" %} {% block body_block %}

Welcome to the School Detail Page

School Details:

Id_num: {{school_details.id}}

Name: {{school_details.name}}

Principal: {{school_details.principal}}

Location: {{school_details.location}}

Students:

{% for student in school_details.students.all %}

{{student.name}} who is {{student.age}} years old.

{% endfor %}

Update

{% endblock %}