landsgemeinde.models.assembly

Attributes

AssemblyState

STATES

Classes

Assembly

Mixin providing a meta/content JSON pair. Meta is a JSON column loaded

Module Contents

type landsgemeinde.models.assembly.AssemblyState = Literal['draft', 'scheduled', 'ongoing', 'completed'][source]
landsgemeinde.models.assembly.STATES: dict[AssemblyState, translationstring.TranslationString][source]
class landsgemeinde.models.assembly.Assembly[source]

Bases: onegov.core.orm.Base, onegov.core.orm.mixins.ContentMixin, onegov.core.orm.mixins.TimestampMixin, onegov.file.AssociatedFiles, onegov.search.ORMSearchable, onegov.landsgemeinde.models.mixins.StartTimeMixin

Mixin providing a meta/content JSON pair. Meta is a JSON column loaded with each request, content is a JSON column loaded deferred (to be shown only in the detail view).

__tablename__ = 'landsgemeinde_assemblies'[source]
es_public = True[source]

Returns True if the model is available to be found by the public. If false, only editors/admins will see this object in the search results.

es_properties[source]
property es_suggestion: tuple[str, Ellipsis][source]

Returns suggest-as-you-type value of the document. The field used for this property should also be indexed, or the suggestion will lead to nowhere.

If a single string is returned, the completion input equals the completion output. (My Title -> My Title)

If an array of strings is returned, all values are possible inputs and the first value is the output. (My Title/Title My -> My Title)

id: sqlalchemy.Column[uuid.UUID][source]
state: sqlalchemy.Column[AssemblyState][source]
date: sqlalchemy.Column[datetime.date][source]
extraordinary: sqlalchemy.Column[bool][source]
video_url: sqlalchemy.Column[str | None][source]
memorial_pdf[source]
memorial_2_pdf[source]
memorial_supplement_pdf[source]
protocol_pdf[source]
audio_mp3[source]
audio_zip[source]
overview[source]
agenda_items: sqlalchemy.orm.relationship[list[onegov.landsgemeinde.models.agenda.AgendaItem]][source]
last_modified: sqlalchemy.Column[datetime.datetime | None][source]
stamp() None[source]