academics package¶
Submodules¶
academics.apps module¶
academics.context_processors module¶
-
academics.context_processors.
get_context_global_variable
(request)¶ Parameters: request (HTTPRequest) – carries request info Returns: context which is available in all templates
academics.models module¶
-
class
academics.models.
Message
(*args, **kwargs)¶ Bases:
django.db.models.base.Model
Message model for contact us form.
-
exception
DoesNotExist
¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned
¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
date
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
email
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
get_next_by_date
(*, field=<django.db.models.fields.DateTimeField: date>, is_next=True, **kwargs)¶
-
get_previous_by_date
(*, field=<django.db.models.fields.DateTimeField: date>, is_next=False, **kwargs)¶
-
id
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
message
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
name
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
objects
= <django.db.models.manager.Manager object>¶
-
exception
-
class
academics.models.
Program
(*args, **kwargs)¶ Bases:
django.db.models.base.Model
Program model represents different programs like BE Software, BE Civil, BE IT and so on.
Each Program has its unique code.
Each Program has different semesters; for master programs 4 semesters and for bachelor programs 8 semesters. Semester is represented by another model/table. Program and Semester has one-to-many relationship i.e One program has many semesters but particular semester belongs to only one program.
-
exception
DoesNotExist
¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned
¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
career_prospectus
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
code
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
desc
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
get_absolute_url
()¶ Returns: url to the program specified by code as program/{code}
-
id
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
name
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
objects
= <django.db.models.manager.Manager object>¶
-
semester_set
¶ Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.children
is aReverseManyToOneDescriptor
instance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()
defined below.
-
subject_set
¶ Accessor to the related objects manager on the forward and reverse sides of a many-to-many relation.
In the example:
class Pizza(Model): toppings = ManyToManyField(Topping, related_name='pizzas')
Pizza.toppings
andTopping.pizzas
areManyToManyDescriptor
instances.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()
defined below.
-
exception
-
class
academics.models.
Semester
(*args, **kwargs)¶ Bases:
django.db.models.base.Model
Semester model represents the different semesters in the particular program.
sem gives the semester as 1, 2 , 3 and so on.
Semester is related to Program model by a foreign key.
Each Semester has different subjects related by field subjects.
-
exception
DoesNotExist
¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned
¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
get_meaningful_name
()¶ Returns: meaningful names for the given semester. Example, First(I) for 1, Second(II) for 2 and so on.
-
id
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
objects
= <django.db.models.manager.Manager object>¶
-
program
¶ Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Child.parent
is aForwardManyToOneDescriptor
instance.
-
program_id
¶
-
sem
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
subjects
¶ Accessor to the related objects manager on the forward and reverse sides of a many-to-many relation.
In the example:
class Pizza(Model): toppings = ManyToManyField(Topping, related_name='pizzas')
Pizza.toppings
andTopping.pizzas
areManyToManyDescriptor
instances.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()
defined below.
-
exception
-
class
academics.models.
Subject
(*args, **kwargs)¶ Bases:
django.db.models.base.Model
Subject model represents the subjects of a particular semester/program.
Each Subject has unique code.
A semester has multiple subjects and similarly, a single subject, say Logic Circuit(Elx 110) belongs to 2nd Semester (of BE Software) and 3rd Semester (of BE IT) . So, Subject and Semester shows many-to-many relationship.
Program and Subject are related through Semester. For example; if we want all the subjects of BE Software, then we have to retrieve each Semester of BE Software and from those individual semester, we can get the subjects.
To ease the above process, we introduce the many-to-many relationship between Program and Subject. Now we can directly access the subjects of BE Software without joining Semester.
-
exception
DoesNotExist
¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned
¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
code
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
credit
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
id
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
name
¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
objects
= <django.db.models.manager.Manager object>¶
-
programs
¶ Accessor to the related objects manager on the forward and reverse sides of a many-to-many relation.
In the example:
class Pizza(Model): toppings = ManyToManyField(Topping, related_name='pizzas')
Pizza.toppings
andTopping.pizzas
areManyToManyDescriptor
instances.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()
defined below.
-
semester_set
¶ Accessor to the related objects manager on the forward and reverse sides of a many-to-many relation.
In the example:
class Pizza(Model): toppings = ManyToManyField(Topping, related_name='pizzas')
Pizza.toppings
andTopping.pizzas
areManyToManyDescriptor
instances.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()
defined below.
-
exception
academics.views module¶
-
academics.views.
contact_us
(request)¶
-
academics.views.
facility
(request)¶ Parameters: request (HTTPRequest) – carries request info Returns: renders facilities.html
-
academics.views.
handle404
(request)¶ Parameters: request (HTTPRequest) – carries request info Returns: renders 404.html
-
academics.views.
home
(request)¶ Parameters: request (HTTPRequest) – carries request info Returns: renders home.html
-
academics.views.
program
(request, code)¶ Parameters: - request (HTTPRequest) – carries request info
- code (int) – program code
-> filters out the program on the basis of given program code
-> if no program exists with that code, return 404
-> otherwise, render program.html with context current_program
-
academics.views.
scholarship
(request)¶ Parameters: request (HTTPRequest) – carries request info Returns: renders scholarship.html