election_day.screen_widgets.election
====================================
.. py:module:: election_day.screen_widgets.election
Classes
-------
.. autoapisummary::
election_day.screen_widgets.election.ElectionCandidatesTableWidget
election_day.screen_widgets.election.ElectionCandidatesByEntityTableWidget
election_day.screen_widgets.election.ElectionListsTableWidget
election_day.screen_widgets.election.ElectionPartyStrengthsTableWidget
election_day.screen_widgets.election.ElectionCandidatesChartWidget
election_day.screen_widgets.election.ElectionListsChartWidget
election_day.screen_widgets.election.ElectionPartyStrengthsChartWidget
election_day.screen_widgets.election.AllocatedMandatesWidget
election_day.screen_widgets.election.NumberOfMandatesWidget
election_day.screen_widgets.election.MandatesWidget
election_day.screen_widgets.election.ElectionTurnoutWidget
election_day.screen_widgets.election.AbsoluteMajorityWidget
election_day.screen_widgets.election.IfAbsoluteMajorityWidget
election_day.screen_widgets.election.IfRelateMajorityWidget
Module Contents
---------------
.. py:class:: ElectionCandidatesTableWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'election-candidates-table'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:method:: get_variables(layout: onegov.election_day.layouts.DefaultLayout) -> dict[str, Any]
.. py:class:: ElectionCandidatesByEntityTableWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'election-candidates-by-entity-table'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:method:: get_variables(layout: onegov.election_day.layouts.DefaultLayout) -> dict[str, Any]
.. py:class:: ElectionListsTableWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.ProporzElection`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'election-lists-table'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:method:: get_variables(layout: onegov.election_day.layouts.DefaultLayout) -> dict[str, Any]
.. py:class:: ElectionPartyStrengthsTableWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.ProporzElection`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'election-party-strengths-table'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:method:: get_variables(layout: onegov.election_day.layouts.DefaultLayout) -> dict[str, Any]
.. py:class:: ElectionCandidatesChartWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ChartWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'election-candidates-chart'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:class:: ElectionListsChartWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ChartWidget`\ [\ :py:obj:`onegov.election_day.models.ProporzElection`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'election-lists-chart'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:class:: ElectionPartyStrengthsChartWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ChartWidget`\ [\ :py:obj:`onegov.election_day.models.ProporzElection`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'election-party-strengths-chart'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:class:: AllocatedMandatesWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'allocated-mandates'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
${layout.format_number(model.allocated_mandates)}
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:class:: NumberOfMandatesWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'number-of-mandates'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
${layout.format_number(model.number_of_mandates)}
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:class:: MandatesWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'mandates'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:class:: ElectionTurnoutWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'election-turnout'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
${'{0:.2f}'.format(model.turnout)} %
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:class:: AbsoluteMajorityWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'absolute-majority'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
${layout.format_number(model.absolute_majority or 0)}
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:class:: IfAbsoluteMajorityWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'if-absolute-majority'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''
.. py:class:: IfRelateMajorityWidget(model: _E | None = None)
Bases: :py:obj:`onegov.election_day.screen_widgets.generic.ModelBoundWidget`\ [\ :py:obj:`onegov.election_day.models.Election`\ ]
Abstract base class for generic types.
A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::
class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.
This class can then be used as follows::
def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default
.. py:attribute:: tag
:value: 'if-relative-majority'
.. py:attribute:: template
:value: Multiline-String
.. raw:: html
Show Value
.. code-block:: python
"""
"""
.. raw:: html
.. py:attribute:: usage
:value: ''