Esempio n. 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)
Esempio n. 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'))
Esempio n. 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)