コード例 #1
0
ファイル: frames.py プロジェクト: littlezz/IslandCollection
    def init_list(self):
        """
        show database records
        :return:None
        """

        tasks = Tasks.get_all()

        # if there is no tasks in database , show one line
        if not tasks.exists():
            self.add_content_row()
            return

        for t in tasks:
            # TODO:fix this
            t.pop('create_time')
            self.add_content_row(**t)