def get_bill_client_search():
     return template_manager.get_template('bills.html')
 def get_bills():
     return template_manager.get_template('bill.html')
 def get_bill_null_id_slash():
     return template_manager.get_template('bill_not_found.html')
 def get_bill(bill_id):
     print(bill_id)
     return template_manager.get_template('bill.html')
示例#5
0
 def get_member_null_id():
     return template_manager.get_template('member_not_found.html')
示例#6
0
 def filter_route():
     return template_manager.get_template('filter.html')
示例#7
0
 def get_members():
     return template_manager.get_template('members.html')
示例#8
0
 def get_member(member_id):
     print(member_id)
     return template_manager.get_template('member.html')
示例#9
0
 def about_route():
     return template_manager.get_template('about.html')
示例#10
0
 def canadian_root():
     return template_manager.get_template('index.html')
示例#11
0
 def index_route():
     return template_manager.get_template('index.html')