{% load staticfiles %} {% block title %} title is provided by inheriting templates {% endblock %} {% block head %}{% endblock %}

EZ University

Course Information System

{% block content %}
{% block org_content %} This is default content! {% endblock %}
{% block create_button %}{% endblock %}
{% block content_footer %}{% endblock %}
{% endblock %}
{% if is_paginated %}
    {% if first_page_url %}
  • First
  • {% endif %} {% if previous_page_url %}
  • Previous
  • {% endif %}
  • Page {{ page_obj.number }} of {{ paginator.num_pages }}
  • {% if next_page_url %}
  • Next
  • {% endif %} {% if last_page_url %}
  • Last
  • {% endif %}
{% endif %}