{% extends "base.html" %} {% block title %}Search result for {{ query }} | School Management System{% endblock title %} {% load class_name %} {% block content %}
{{ count }} result{{ count|pluralize }} for {{ query }}

{% for object in object_list %} {% with object|class_name as klass %} {% if klass == "Program" %}
Program

{{ object.title}}

{{ object.summary }}


{% elif klass == "Course" %}
Course

Program of {{ object.program }}

{{ object }}

{{ object.summary }}


{% elif klass == "NewsAndEvents" %}
News And Events

Date: {{ object.updated_date|timesince }} ago

{{ object.title }}

{{ object.summary }}


{% elif klass == "Quiz" %}
Quiz

{{ object.category }} quiz, Course: {{ object.course }}

{{ object.title }}

{{ object.description }}


{% else %}
Program
{{ object }} | {{ object|class_name }}

{{ object }} | {{ object|class_name }}

{{ object.description }}


{% endif %} {% endwith %} {% empty %}
Search by:
  • Program > Title or Description
  • Course > Title, Code or Description
  • News And Events > Title, Description or just by typing "news" or "event"
  • Quiz > Title, Description or Category(practice, assignment and exam)
{% endfor %}
{% endblock content %}