Commit cf95f7fa by Jason Bau

Open Ended Panel -> Assessment Panel

parent cc65b8f9
......@@ -11,7 +11,8 @@ from xmodule.modulestore.draft import DIRECT_ONLY_CATEGORIES
log = logging.getLogger(__name__)
# In order to instantiate an open ended tab automatically, need to have this data
OPEN_ENDED_PANEL = {"name": "Open Ended Panel", "type": "open_ended"}
#OPEN_ENDED_PANEL = {"name": "Open Ended Panel", "type": "open_ended"}
OPEN_ENDED_PANEL = {"name": "Assessment Panel", "type": "open_ended"}
NOTES_PANEL = {"name": "My Notes", "type": "notes"}
EXTRA_TAB_PANELS = dict([(p['type'], p) for p in [OPEN_ENDED_PANEL, NOTES_PANEL]])
......
......@@ -169,7 +169,7 @@ def _combined_open_ended_grading(tab, user, course, active_page):
if user.is_authenticated():
link = reverse('open_ended_notifications', args=[course.id])
# tab_name = "Open Ended Panel"
tab_name = "Grading Panel"
tab_name = "Assessment Panel"
notifications = open_ended_notifications.combined_notifications(course, user)
pending_grading = notifications['pending_grading']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment