{% extends "base.html" %} {% load humanize %} {% block page_title %}Global Search{% endblock %} {% block content %}
Results for "{{ query }}": {{ total_results|intcomma }} matches.
{% else %}Enter a search term to find records across the system.
{% endif %}| Name | Student ID | Class | Action |
|---|---|---|---|
| {{ item.student_name }} | {{ item.display_student_id }} | {{ item.current_class.code|default:item.current_class.name }} | View |
| No student matches. | |||
| Name | Department | Action | |
|---|---|---|---|
| {{ item.first_name }} {{ item.last_name }} | {{ item.department|default:"-" }} | {{ item.email|default:"-" }} | View |
| No staff matches. | |||
| Username | Role | Status | Action |
|---|---|---|---|
| {{ item.username }} | {{ item.role_name }} | {% if item.is_active %}Active{% else %}Inactive{% endif %} | View |
| No user matches. | |||
| Class | Term/Year | Section | Action |
|---|---|---|---|
| {{ item.Class.code }} - {{ item.Class.name }} | Term {{ item.term.term }} ยท {{ item.academic_year.academic_year }} | {{ item.section.section_name }} | View |
| No academic class matches. | |||
| Subject | Section | Action |
|---|---|---|
| {{ item.name }} | {{ item.section.section_name|default:"-" }} | Open |
| No subject matches. | ||