You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
530 B
18 lines
530 B
"""Search tab for the parliamentary explorer.
|
|
|
|
This module will contain the search tab implementation.
|
|
Currently: Tab logic remains in explorer.py pending Streamlit decoupling.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
def build_search_tab(db_path: str, show_rejected: bool) -> None:
|
|
"""Build the Motie Zoeken tab.
|
|
|
|
Currently delegates to explorer.py implementation.
|
|
Will be extracted when rendering logic is decoupled from Streamlit.
|
|
"""
|
|
import explorer
|
|
|
|
explorer.build_search_tab(db_path, show_rejected)
|
|
|