fsi.collections.audit

Module Contents

Classes

AuditCollection

Displays the list of attendees filtered by a course and organisation

Attributes

T

fsi.collections.audit.T[source]
class fsi.collections.audit.AuditCollection(session: sqlalchemy.orm.Session, course_id: UUID | None, auth_attendee: onegov.fsi.models.CourseAttendee, organisations: list[str] | None = None, letter: str | None = None, page: int = 0, exclude_inactive: bool = True)[source]

Bases: onegov.core.collection.GenericCollection[AuditRow], onegov.core.collection.Pagination[AuditRow]

Displays the list of attendees filtered by a course and organisation for evaluation if they subscribed and completed a course event.

The organisation filter should also be exact and not fuzzy.

property page_index: int[source]

Returns the current page index (starting at 0).

property model_class: type[onegov.fsi.models.CourseAttendee][source]
batch_size = 20[source]
subset() Query[AuditRow][source]

Returns an SQLAlchemy query containing all records that should be considered for pagination.

page_by_index(index: int) typing_extensions.Self[source]

Returns the page at the given index. A page here means an instance of the class inheriting from the Pagination base class.

by_letter_and_orgs(letter: str | None = None, orgs: list[str] | None = None) typing_extensions.Self[source]
by_letter(letter: str | None) typing_extensions.Self[source]
__eq__(other: object) bool[source]

Return self==value.

ranked_subscription_query(past_only: bool = True) Query[RankedSubscriptionRow][source]

Ranks all subscriptions of all events of a course windowed over the attendee_id and ranked after completed, most recent Use this query to make a join with any collection of attendees.

last_subscriptions() Query[LastSubscriptionRow][source]

Retrieve the last completed subscription by attemdee for a given the course_id.

filter_attendees_by_role(query: Query[T]) Query[T][source]

Filter permissions of editor, exclude external,

query() Query[AuditRow][source]
next_subscriptions(request: onegov.fsi.request.FsiRequest) dict[uuid.UUID, tuple[str, datetime.datetime]][source]
course() onegov.fsi.models.Course | None[source]
used_letters() list[str][source]

Returns a list of all the distinct first letters of the peoples last names.

relevant_courses() tuple[tuple[uuid.UUID, str], Ellipsis][source]