Skip to content
This repository was archived by the owner on Mar 15, 2018. It is now read-only.

Commit 6b79c56

Browse files
author
Andy McKay
committed
hide editors for now (bug 729751)
1 parent e25808f commit 6b79c56

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

mkt/site/context_processors.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ def global_settings(request):
2525
{'text': _('Change Password'), 'href': 'https://browserid.org/'},
2626
{'text': _('Log out'), 'href': reverse('users.logout')},
2727
]
28-
29-
if acl.check_reviewer(request):
30-
tools_links.append({'text': _('Editor Tools'),
31-
'href': reverse('editors.home')})
28+
# Not right now. This leads to a rabbit hole of issues. See bug 729751
29+
# or ask andym for more.
30+
# if acl.check_reviewer(request):
31+
# tools_links.append({'text': _('Editor Tools'),
32+
# 'href': reverse('editors.home')})
3233
if acl.action_allowed(request, 'Localizers', '%'):
3334
tools_links.append({'text': _('Localizer Tools'),
3435
'href': '/localizers'})

mkt/urls.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
('', include('mkt.site.urls')),
2424

2525
# Editor tools.
26-
('editors/', include('editors.urls')),
26+
# See bug 729751 as to why.
27+
# ('editors/', include('editors.urls')),
2728

2829
# Home.
2930
url('$^', settings.HOME, name='home'),

0 commit comments

Comments
 (0)