Пример #1
0
def info():
    return app.send_static_file('info.html')
Пример #2
0
def index():
    return app.send_static_file('index.html')
Пример #3
0
def index():
    return app.send_static_file('index.html')
Пример #4
0
def index():
    # model = ProjectsModel()
    return app.send_static_file('index.html')
Пример #5
0
def send_text_file(file_name):
    full_file_name = file_name + '.txt'
    return app.send_static_file(full_file_name)
Пример #6
0
def send_static_file(filename):
    path = 'images/' + filename
    return app.send_static_file(path)
Пример #7
0
def send_album_pict(album_title, filename):
    path = 'uploads/pict/' + album_title + '/' + filename
    return app.send_static_file(path)
Пример #8
0
def send_album_thumbs(album_title, filename):
    path = 'uploads/thumb/' + album_title + '/' + filename
    return app.send_static_file(path)