Commit d9d6f997e3225bf5ac35f15542d46dedbed2abaa
1 parent
a0ff60dd
Exists in
master
and in
39 other branches
Fixing proxyview attr names
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/proxy/views.py
... | ... | @@ -9,11 +9,11 @@ from revproxy.views import ProxyView |
9 | 9 | class TracProxyView(ProxyView): |
10 | 10 | base_url = settings.COLAB_TRAC_URL |
11 | 11 | add_remote_user = settings.REVPROXY_ADD_REMOTE_USER |
12 | - diazo_template_theme = 'base.html' | |
12 | + diazo_theme_template = 'base.html' | |
13 | 13 | diazo_rules = os.path.join(settings.BASE_DIR, 'proxy', 'trac_rules.xml') |
14 | 14 | |
15 | 15 | |
16 | 16 | class JenkinsProxyView(ProxyView): |
17 | 17 | base_url = settings.COLAB_CI_URL |
18 | 18 | add_remote_user = settings.REVPROXY_ADD_REMOTE_USER |
19 | - diazo_template_theme = 'base.html' | |
19 | + diazo_theme_template = 'base.html' | ... | ... |