Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A toggle control for boolean (true/false) values.
Checkbox(checked=False)
from mirmod.controls import Checkbox @wob.receiver("value", "enabled", control=Checkbox(checked=False)) def receive_input(self, i): self.enabled = i.lower() == "true"
"true"
"false"