fixing bug

This commit is contained in:
q
2016-07-15 16:55:11 +03:00
parent c12cd3ff6e
commit 3e784b89ec

View File

@@ -163,7 +163,7 @@ def show_shop(shopid):
return render_template('show_shop.html', entries=entries, shop=shopname, return render_template('show_shop.html', entries=entries, shop=shopname,
shopid=shopid, content=content,shares=shared_to, shopid=shopid, content=content,shares=shared_to,
date=get_shop_date(shopid),date_bkp=get_shop_backup_date(shopid), date=get_shop_date(shopid),date_bkp=get_shop_backup_date(shopid),
autosort=session['sort_view']) autosort=session.get('sort_view',False))
@app.route('/') @app.route('/')
def list_shops(): def list_shops():