def index(self): return {'resource': {'register': '注 册', 'login': '******', 'logout': '登 出', 'username': '******', 'password': '******', 'search': '查 找', 'op': '操 作', 'delete': '删除', 'modify': '修改', 'addbook': '添加新书', 'ok': '确 定', 'continue': '继 续', 'reset': '重 置', 'back': '返 回', 'index': '序 号', 'bookname': '书 名', 'bookseries': '系 列', 'bookauthor': '作 者', 'barcode': '条 码', 'bookowner': '所有人', 'bookcreate': '上架时间', 'bookstatus': '当前状态', 'booklastmodified': '最后更新时间', }, 'books':Book.find_all()}
def index_post(self, **kws): return Book.add(**kws)
def index_delete(self): return Book.delete(self.book)
def __init__(self, id_): self.id_ = id_ self.book = Book.find_by_id(self.id_) assert self.book
def index_post(self, **kws): return Book.update(self.book, **kws)
def index(self): return Book.find_all()