@@ -92,7 +92,7 @@ def jet_get_menu(context):
for app in app_list:
if not current_found:
for model in app['models']:
- if context['request'].path.startswith(model['admin_url']):
+ if 'admin_url' in model and context['request'].path.startswith(model['admin_url']):
model['current'] = True
current_found = True
break