diff options
Diffstat (limited to 'jimbrella/web.py')
-rw-r--r-- | jimbrella/web.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/jimbrella/web.py b/jimbrella/web.py index 73b0659..0b32ce0 100644 --- a/jimbrella/web.py +++ b/jimbrella/web.py @@ -1,4 +1,5 @@ from flask import Flask, request, render_template +from user_agents import parse as user_agent from .database import Database from .config import * @@ -26,6 +27,7 @@ def admin_umbrellas(): return render_template( "admin/umbrellas.html", umbrellas=umbrellas, + mobile=user_agent(request.user_agent.string).is_mobile, ) |