Commit 2b93bc0e0d2b2a28b00d694dde12f9d3a6eb90f2
1 parent
f3ba6466
Exists in
master
and in
39 other branches
Using label instead of name for template context
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/proxy/context_processors.py
@@ -7,6 +7,6 @@ def proxied_apps(request): | @@ -7,6 +7,6 @@ def proxied_apps(request): | ||
7 | 7 | ||
8 | for app in apps.get_app_configs(): | 8 | for app in apps.get_app_configs(): |
9 | if getattr(app, 'colab_proxied_app', False): | 9 | if getattr(app, 'colab_proxied_app', False): |
10 | - proxied_apps[app.name] = True | 10 | + proxied_apps[app.label] = True |
11 | 11 | ||
12 | return {'proxy': proxied_apps} | 12 | return {'proxy': proxied_apps} |