diff --git a/flash_cards.py b/flash_cards.py index aa44ddc..84ab4ac 100644 --- a/flash_cards.py +++ b/flash_cards.py @@ -75,7 +75,7 @@ def cards(): ''' cur = db.execute(query) cards = cur.fetchall() - return render_template('cards.html', cards=cards, filter_name=None) + return render_template('cards.html', cards=cards, filter_name="all") @app.route('/filter_cards/')