fixed order_by syntax on history view

This commit is contained in:
CaptainQwark 2016-06-30 22:04:59 +02:00
parent 7986f56ac6
commit e32186409a

View File

@ -233,7 +233,7 @@ def dashboard():
domain_count = Domain.query.count()
users = User.query.all()
history_number = History.query.count()
history = History.query.order_by("created_on desc").limit(4)
history = History.query.order_by(History.created_on.desc()).limit(4)
server = Server(server_id='localhost')
statistics = server.get_statistic()
if statistics: