Skip to content

Commit 0182abe

Browse files
committed
Fixes
1 parent 8228f96 commit 0182abe

File tree

9 files changed

+6
-5
lines changed

9 files changed

+6
-5
lines changed

examples/todo_series/kanban/app.py renamed to examples/todo_series/_kanban/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def _un_select_option(c, todo_item):
8989
# Index page
9090
@rt
9191
async def index(sess):
92+
sess['user_name'] = unqid()
9293
return Container(mk_todo_form(), Divider(),
9394
Div(mk_todo_list(sess['user_name']),id='todo-list'),
9495
Details(Summary(H1("Archived Todos")),mk_archive_list()))
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[REQUIRED]
2+
ImageAltText=Kanban Todo application
3+
ComponentName=Kanban Todo App (SQLite)
4+
ComponentDescription=A kanban todo app using SQLite backend.

examples/todo_series/kanban/metadata.ini

Lines changed: 0 additions & 4 deletions
This file was deleted.
-767 KB
Binary file not shown.
78.1 KB
Loading

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def SectionTable(section):
187187
Thead(Tr(map(Th, ("Component", "Description", "Actions")))),
188188
Tbody(*[TableRow(dir) for dir in sorted(section.iterdir())
189189
if is_example_dir(dir)]),
190-
cls=(TableT.middle, TableT.divider, TableT.hover, TableT.small)),
190+
cls=(TableT.middle, TableT.divider, TableT.hover, TableT.sm)),
191191
# open=True,
192192
id=section_id),
193193
cls='py-2')

0 commit comments

Comments
 (0)