Пример #1
0
def sort_show_by_exifdate(album):
    """Sort the show by exif datetime """
    show = Show(album, current_app.config, session)
    show.sort_by_exif_datetime().save()
    return goback(True)
Пример #2
0
def sort_show_by_exifdate(album):
    """Sort the show by exif datetime """
    show = Show(album)
    show.sort_by_exif_datetime()
    return redirect(request.referrer or url_for('.index'))
Пример #3
0
def sort_show_by_exifdate(album):
    """Sort the show by exif datetime """
    show = Show(album, current_app.config, session)
    show.sort_by_exif_datetime().save()
    return goback(True)