Merge pull request #825 from edx/fix/vik/staff-information

Staff information about duplicate ORA submissions
This commit is contained in:
Vik Paruchuri
2013-09-06 14:14:31 -07:00
5 changed files with 24 additions and 3 deletions

View File

@@ -964,3 +964,11 @@ section.peer-grading-container{
}
}
}
div.staff-info{
background-color: #eee;
border-radius: 10px;
border-bottom: 1px solid lightgray;
padding: 10px;
margin: 10px 0px 10px 0px;
}

View File

@@ -386,7 +386,8 @@ class CombinedOpenEndedV1Module():
'accept_file_upload': self.accept_file_upload,
'location': self.location,
'legend_list': LEGEND_LIST,
'human_state': HUMAN_STATES.get(self.state, "Not started.")
'human_state': HUMAN_STATES.get(self.state, "Not started."),
'is_staff': self.system.user_is_staff,
}
return context