landsgemeinde.models.agenda
Attributes
Classes
Mixin providing a meta/content JSON pair. Meta is a JSON column loaded |
Module Contents
- landsgemeinde.models.agenda.AgendaItemState: TypeAlias = Literal['scheduled', 'ongoing', 'completed'][source]
- landsgemeinde.models.agenda.STATES: dict[AgendaItemState, translationstring.TranslationString][source]
- class landsgemeinde.models.agenda.AgendaItem[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.TimestampedVideoMixin
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).
- 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]
Returns the type mapping of this model. Each property in the mapping will be read from the model instance.
The returned object needs to be a dict or an object that provides a
to_dict
method.Internally, onegov.search stores differing languages in different indices. It does this automatically through langauge detection, or by manually specifying a language.
Note that objects with multiple languages are not supported (each object is supposed to have exactly one language).
Onegov.search will automatically insert the right analyzer for types like these.
There’s currently only limited support for properties here, namely objects and nested mappings do not work! This is going to be added in the future though.