election_day.pdf ================ .. py:module:: election_day.pdf Classes ------- .. autoapisummary:: election_day.pdf.Pdf Module Contents --------------- .. py:class:: Pdf(*args: Any, locale: str | None = None, translations: dict[str, gettext.GNUTranslations] | None = None, toc_levels: int = 3, created: str = '', logo: str | None = None, link_color: str | None = None, underline_links: bool = False, underline_width: float | str = 0.5, **kwargs: Any) Bases: :py:obj:`onegov.pdf.Pdf` Our custom PDF class. This adds some custom styles, two tables (factoids, tables) and the ability to translate texts. .. py:attribute:: locale :value: None .. py:attribute:: translations .. py:method:: adjust_style(font_size: int = 10) -> None Adds styles for votes and elections. .. py:method:: translate(text: str) -> str Translates the given string. .. py:method:: h1(title: str, style: reportlab.lib.styles.PropertySet | None = None) -> None Translated H1. .. py:method:: h2(title: str, style: reportlab.lib.styles.PropertySet | None = None) -> None Translated H2. .. py:method:: h3(title: str, style: reportlab.lib.styles.PropertySet | None = None) -> None Translated H3. .. py:method:: figcaption(text: str, style: reportlab.lib.styles.PropertySet | None = None) -> None Translated Figcaption. .. py:method:: dates_line(date: Pdf.dates_line.date, changed: datetime.datetime | None) -> None Adds the given date and timespamp. .. py:method:: factoids(headers: list[str], values: list[str]) -> None Adds a table with factoids. .. py:method:: results(head: list[str], body: list[list[Any]], foot: list[Any] | None = None, hide: list[bool] | None = None) -> None Adds a table with results.