def list_boards(self):
"""Display a column of buttons listing all available boards."""
boards = self.config.get_boardlist()
btn_list = []
for board, desc in sorted(boards.items()):
btn_list.append(ur.AttrMap(ur.Button(
"/" + board + "/ - " + desc, self.button_press, board),
None, "reverse"))
btn_list.append(self.div)
# boards_count is here so the list can be dynamically displayed.
self.boards_count = len(btn_list)
return btn_list
评论列表
文章目录