Exemplo n.º 1
0
def book_information():
    response = request.cookies.get('WTF')
    page = app_server.cookie_checking_teacher(response,
                                              'teacher/BookInformation.html',
                                              'Index.html')
    return render_template(page)
Exemplo n.º 2
0
def new_book():
    response = request.cookies.get('WTF')
    page = app_server.cookie_checking_teacher(response, 'teacher/NewBook.html',
                                              'Index.html')
    return render_template(page)
Exemplo n.º 3
0
def library_card():
    response = request.cookies.get('WTF')
    page = app_server.cookie_checking_teacher(response,
                                              'teacher/LibraryCard.html',
                                              'Index.html')
    return render_template(page)
Exemplo n.º 4
0
def book_borrow():
    response = request.cookies.get('WTF')
    page = app_server.cookie_checking_teacher(response,
                                              'teacher/BookBorrow.html',
                                              'Index.html')
    return render_template(page)
Exemplo n.º 5
0
def adm_pas_change():
    response = request.cookies.get('WTF')
    page = app_server.cookie_checking_teacher(response,
                                              'teacher/AdmPasChange.html',
                                              'Index.html')
    return render_template(page)