election_day.collections.screens ================================ .. py:module:: election_day.collections.screens Classes ------- .. autoapisummary:: election_day.collections.screens.ScreenCollection Module Contents --------------- .. py:class:: ScreenCollection(session: sqlalchemy.orm.Session, page: int = 0) Bases: :py:obj:`onegov.core.collection.Pagination`\ [\ :py:obj:`onegov.election_day.models.Screen`\ ] Provides collections with pagination, if they implement a few documented properties and methods. See :class:`onegov.ticket.TicketCollection` for an example. .. py:attribute:: page :type: int .. py:attribute:: session .. py:method:: __eq__(other: object) -> bool Returns True if the current and the other Pagination instance are equal. Used to find the current page in a list of pages. .. py:method:: subset() -> sqlalchemy.orm.Query[onegov.election_day.models.Screen] Returns an SQLAlchemy query containing all records that should be considered for pagination. .. py:property:: page_index :type: int Returns the current page index (starting at 0). .. py:method:: page_by_index(index: int) -> Self Returns the page at the given index. A page here means an instance of the class inheriting from the ``Pagination`` base class. .. py:method:: query() -> sqlalchemy.orm.Query[onegov.election_day.models.Screen] .. py:method:: by_id(id: int) -> onegov.election_day.models.Screen | None .. py:method:: by_number(number: int) -> onegov.election_day.models.Screen | None .. py:method:: add(screen: onegov.election_day.models.Screen) -> None .. py:method:: delete(screen: onegov.election_day.models.Screen) -> None .. py:method:: export() -> list[dict[str, Any]]