Commit 6d251015 by David Ormsbee

Show item_id (location) in Course Staff Debug section.

It's cumbersome to get otherwise, and staff will want it for state
resetting (if it comes to that).
parent 395d162d
......@@ -37,6 +37,9 @@
</table>
</div>
<div class="staff-info__status ui-staff__content__section">
Location: {{ item_id }}
</div>
</div>
</div>
</div>
......@@ -298,6 +298,7 @@ class OpenAssessmentBlock(
context_dict['is_course_staff'] = True
context_dict['status_counts'] = status_counts
context_dict['num_submissions'] = num_submissions
context_dict['item_id'] = unicode(self.scope_ids.usage_id)
template = get_template("openassessmentblock/oa_base.html")
context = Context(context_dict)
......
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