|
@@ -8,13 +8,13 @@ router = APIRouter(prefix='/c')
|
|
@router.page('/')
|
|
@router.page('/')
|
|
def example_page():
|
|
def example_page():
|
|
with theme.frame('- Example C -'):
|
|
with theme.frame('- Example C -'):
|
|
- with ui.column().classes('items-center'):
|
|
|
|
- ui.label('Example C').classes('text-h4 text-grey-8')
|
|
|
|
- for i in range(1, 4):
|
|
|
|
- ui.link(f'Item {i}', f'/c/items/{i}').classes('text-xl text-grey-8')
|
|
|
|
|
|
+ ui.label('Example C').classes('text-h4 text-grey-8')
|
|
|
|
+ for i in range(1, 4):
|
|
|
|
+ ui.link(f'Item {i}', f'/c/items/{i}').classes('text-xl text-grey-8')
|
|
|
|
|
|
|
|
|
|
-@router.page('/items/{id}')
|
|
|
|
|
|
+@router.page('/items/{id}', dark=True)
|
|
def item(id: str):
|
|
def item(id: str):
|
|
with theme.frame(f'- Example C{id} -'):
|
|
with theme.frame(f'- Example C{id} -'):
|
|
ui.label(f'Item #{id}').classes('text-h4 text-grey-8')
|
|
ui.label(f'Item #{id}').classes('text-h4 text-grey-8')
|
|
|
|
+ ui.link('go back', router.prefix).classes('text-xl text-grey-8')
|