RGT.gridMng.models.Session.objects.with_participation

Here are the examples of the python api RGT.gridMng.models.Session.objects.with_participation taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: RGT-tool Source File: sessionsData.py
Function: init
    def __init__(self, user, session=None):
        self.participating_sessions = Session.objects.with_participation(user)
        self.facilitating_sessions = Session.objects.with_facilitator(user)
        self.pending_responses = Session.objects.with_pending_responses(user)
        self.session = session