Skip to content
Snippets Groups Projects
Commit 648d5cda authored by Michael Roytman's avatar Michael Roytman
Browse files

enable course launch checklist for all staff

parent 4b4a8632
No related merge requests found
......@@ -4,15 +4,13 @@ from cms.djangoapps.contentstore.config.waffle import waffle, ENABLE_CHECKLISTS_
from student.roles import GlobalStaff
def should_show_checklists_page(requesting_user):
def should_show_checklists_page():
"""
Determine if the ENABLE_CHECKLISTS_PAGE waffle switch is set
and if the user is able to see it
"""
if waffle().is_enabled(ENABLE_CHECKLISTS_PAGE):
if GlobalStaff().has_user(requesting_user):
return True
return True
return False
......
......@@ -180,7 +180,7 @@ from openedx.core.djangolib.markup import HTML, Text
% endif
</div>
<div class="status-highlights-enabled"></div>
% if should_show_checklists_page(request.user):
% if should_show_checklists_page():
<div class="status-checklist">
<%static:studiofrontend entry="courseOutlineHealthCheck">
{
......
......@@ -127,7 +127,7 @@
<a href="${reverse('export_git', kwargs=dict(course_key_string=unicode(course_key)))}">${_("Export to Git")}</a>
</li>
% endif
% if should_show_checklists_page(request.user):
% if should_show_checklists_page():
<li class="nav-item nav-course-tools-checklists">
<a href="${checklists_url}">${_("Checklists")}</a>
</li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment