swissvotes.collections.pages ============================ .. py:module:: swissvotes.collections.pages Classes ------- .. autoapisummary:: swissvotes.collections.pages.TranslatablePageCollection Module Contents --------------- .. py:class:: TranslatablePageCollection(session: sqlalchemy.orm.Session, **kwargs: Any) Bases: :py:obj:`onegov.core.collection.GenericCollection`\ [\ :py:obj:`onegov.swissvotes.models.TranslatablePage`\ ] A collection of translatable content pages. .. py:property:: model_class :type: type[onegov.swissvotes.models.TranslatablePage] .. py:method:: setdefault(id: str) -> onegov.swissvotes.models.TranslatablePage .. py:method:: query() -> sqlalchemy.orm.Query[onegov.swissvotes.models.TranslatablePage] .. py:method:: add(**kwargs: Any) -> onegov.swissvotes.models.TranslatablePage Adds a new page. .. py:method:: move(subject: onegov.swissvotes.models.TranslatablePage, target: onegov.swissvotes.models.TranslatablePage, direction: onegov.core.orm.abstract.MoveDirection) -> None Takes the given subject and moves it somehwere in relation to the target. :subject: The page to be moved. :target: The page above which or below which the subject is moved. :direction: The direction relative to the target. Either :attr:`MoveDirection.above` if the subject should be moved above the target, or :attr:`MoveDirection.below` if the subject should be moved below the target.