colleges.models.nomination module¶
-
class
colleges.models.nomination.FellowshipNomination(id, college, profile, nominated_by, nominated_on, nominator_comments, fellowship)[source]¶ Bases:
django.db.models.base.Model-
college¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
profile¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
nominated_by¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
nominated_on¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
nominator_comments¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
fellowship¶ Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.placeis aForwardOneToOneDescriptorinstance.
-
objects= <django.db.models.manager.ManagerFromFellowshipNominationQuerySet object>¶
-
property
ongoing_voting_round¶
-
property
latest_voting_round¶
-
property
decision_blocks¶ List of blocking facts (if any) preventing fixing a decision.
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
college_id¶
-
comments¶ 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.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
decision¶ Accessor to the related object on the reverse side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Place.restaurantis aReverseOneToOneDescriptorinstance.
-
events¶ 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.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
fellowship_id¶
-
get_next_by_nominated_on(*, field=<django.db.models.fields.DateTimeField: nominated_on>, is_next=True, **kwargs)¶
-
get_previous_by_nominated_on(*, field=<django.db.models.fields.DateTimeField: nominated_on>, 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.
-
invitation¶ Accessor to the related object on the reverse side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Place.restaurantis aReverseOneToOneDescriptorinstance.
-
nominated_by_id¶
-
profile_id¶
-
voting_rounds¶ 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.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
-
class
colleges.models.nomination.FellowshipNominationEvent(id, nomination, description, on, by)[source]¶ Bases:
django.db.models.base.Model-
nomination¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
description¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
on¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
by¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
by_id¶
-
get_next_by_on(*, field=<django.db.models.fields.DateTimeField: on>, is_next=True, **kwargs)¶
-
get_previous_by_on(*, field=<django.db.models.fields.DateTimeField: on>, 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.
-
nomination_id¶
-
objects= <django.db.models.manager.Manager object>¶
-
-
class
colleges.models.nomination.FellowshipNominationComment(id, nomination, by, text, on)[source]¶ Bases:
django.db.models.base.Model-
nomination¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
by¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
text¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
on¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
by_id¶
-
get_next_by_on(*, field=<django.db.models.fields.DateTimeField: on>, is_next=True, **kwargs)¶
-
get_previous_by_on(*, field=<django.db.models.fields.DateTimeField: on>, 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.
-
nomination_id¶
-
objects= <django.db.models.manager.Manager object>¶
-
-
class
colleges.models.nomination.FellowshipNominationVotingRound(id, nomination, voting_opens, voting_deadline)[source]¶ Bases:
django.db.models.base.Model-
nomination¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
eligible_to_vote¶ 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.toppingsandTopping.pizzasareManyToManyDescriptorinstances.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
voting_opens¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
voting_deadline¶ 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.ManagerFromFellowshipNominationVotingRoundQuerySet object>¶
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
get_next_by_voting_deadline(*, field=<django.db.models.fields.DateTimeField: voting_deadline>, is_next=True, **kwargs)¶
-
get_next_by_voting_opens(*, field=<django.db.models.fields.DateTimeField: voting_opens>, is_next=True, **kwargs)¶
-
get_previous_by_voting_deadline(*, field=<django.db.models.fields.DateTimeField: voting_deadline>, is_next=False, **kwargs)¶
-
get_previous_by_voting_opens(*, field=<django.db.models.fields.DateTimeField: voting_opens>, 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.
-
nomination_id¶
-
votes¶ 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.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
-
class
colleges.models.nomination.FellowshipNominationVote(id, voting_round, fellow, vote, on)[source]¶ Bases:
django.db.models.base.Model-
VOTE_AGREE= 'agree'¶
-
VOTE_ABSTAIN= 'abstain'¶
-
VOTE_DISAGREE= 'disagree'¶
-
VOTE_CHOICES= (('agree', 'Agree'), ('abstain', 'Abstain'), ('disagree', 'Disagree'))¶
-
voting_round¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
fellow¶ 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.parentis aForwardManyToOneDescriptorinstance.
-
vote¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
on¶ 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.ManagerFromFellowshipNominationVoteQuerySet object>¶
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
fellow_id¶
-
get_vote_display(*, field=<django.db.models.fields.CharField: vote>)¶
-
id¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
voting_round_id¶
-
-
class
colleges.models.nomination.FellowshipNominationDecision(id, nomination, outcome, fixed_on, comments)[source]¶ Bases:
django.db.models.base.Model-
nomination¶ Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.placeis aForwardOneToOneDescriptorinstance.
-
OUTCOME_ELECTED= 'elected'¶
-
OUTCOME_NOT_ELECTED= 'notelected'¶
-
OUTCOME_CHOICES= (('elected', 'Elected'), ('notelected', 'Not elected'))¶
-
outcome¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
fixed_on¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
comments¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
property
elected¶
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
get_next_by_fixed_on(*, field=<django.db.models.fields.DateTimeField: fixed_on>, is_next=True, **kwargs)¶
-
get_outcome_display(*, field=<django.db.models.fields.CharField: outcome>)¶
-
get_previous_by_fixed_on(*, field=<django.db.models.fields.DateTimeField: fixed_on>, 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.
-
nomination_id¶
-
objects= <django.db.models.manager.Manager object>¶
-
-
class
colleges.models.nomination.FellowshipInvitation(id, nomination, invited_on, response, postpone_start_to, comments)[source]¶ Bases:
django.db.models.base.Model-
nomination¶ Accessor to the related object on the forward side of a one-to-one relation.
In the example:
class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant')
Restaurant.placeis aForwardOneToOneDescriptorinstance.
-
invited_on¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
RESPONSE_NOT_YET_INVITED= 'notyetinvited'¶
-
RESPONSE_INVITED= 'invited'¶
-
RESPONSE_REINVITED= 'reinvited'¶
-
RESPONSE_MULTIPLY_REINVITED= 'multireinvited'¶
-
RESPONSE_UNRESPONSIVE= 'unresponsive'¶
-
RESPONSE_ACCEPTED= 'accepted'¶
-
RESPONSE_POSTPONED= 'postponed'¶
-
RESPONSE_DECLINED= 'declined'¶
-
RESPONSE_CHOICES= (('notyetinvited', 'Not yet invited'), ('invited', 'Invited'), ('reinvited', 'Reinvited'), ('multireinvited', 'Multiply reinvited'), ('unresponsive', 'Unresponsive'), ('accepted', 'Accepted, for immediate start'), ('postponed', 'Accepted, but start date postponed'), ('declined', 'Declined'))¶
-
response¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
postpone_start_to¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
comments¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
property
declined¶
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
get_response_display(*, field=<django.db.models.fields.CharField: response>)¶
-
id¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
nomination_id¶
-
objects= <django.db.models.manager.Manager object>¶
-