Category page always redirect to first panel.

Fixes #5
This commit is contained in:
Felipe Martin 2014-01-05 18:09:25 +01:00
parent 26b87c1961
commit a252b0a86e
1 changed files with 2 additions and 6 deletions

View File

@ -59,13 +59,9 @@ def category(category):
"""
Category
"""
# ctx = {'current': {'category': category}}
panels = controller._categories[category]
if len(panels) == 1:
go = redirect(url_for('panel', category=category, panel_id=panels[0]))
else:
# TODO: List Panels? Send to main?
go = 'TODO'
go = redirect(
url_for('panel', category=category, panel_id=panels[0].id))
return go