Final official name is Custom Courses for EdX (CCX), rename all code to remove previous name. Rename the FEATURE constant used to identify this feature Rename the middleware for the CCX change rename the constant used for storing the current poc id on the session. rename the _PocContext threading local rename the override provider in all places where it is referenced `PersonalOnlineCoursesOverrideProvider` -> `CustomCoursesForEdxOverrideProvider` generally rename symbols from overrides.py to replace `poc` with `ccx` where possible without changing model names or attributes rename more symbols from poc to ccx rename util functions from app utils module general symbol renaming poc -> ccx in views.py and related url changes Rename the coach role wherever it is used. reword poc_coach to ccx_coach UI rename replace POC with CCX globally template context variable renamed rename poc_ to ccx_ in urls and all related locations (views, js, scss etc) remove pocs migrations Final massive renaming, including models. Re-built migration. cleaning up a few tailing references Fix reference typo in schedule template JS undo modifications made on the fly in test setup to ensure that our tests are properly isolated from the rest of the system tests. Fixes jazkarta/edx-platform#38 Clean up some leftover strings and comments fixing more strings and comments in python files fix a naming error in the schedule tab that was causing problems in deleting courseware items. Fixes jazkarta/edx-platform#36 updating tests and utility code to match changes in infrastructure from latest rebase
24 lines
953 B
HTML
24 lines
953 B
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
|
|
<div id="warn-coach" class="wrapper-msg urgency-high warning">
|
|
<div class="msg">
|
|
<i class="msg-icon icon-warning-sign"></i>
|
|
<div class="msg-content">
|
|
<h3 class="title">${_("WARNING")}</h3>
|
|
<div class="copy">
|
|
<p>${_("For advanced users only. Errors in the grading policy can lead to the course failing to display. This form does not check the validity of the policy before saving.")}</p>
|
|
<p>${_("Most coaches should not need to make changes to the grading policy.")}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h2>${_("Grading Policy")}</h2>
|
|
|
|
<form action="${grading_policy_url}" method="POST">
|
|
<input type="hidden" name="csrfmiddlewaretoken" value="${csrf_token}"/>
|
|
<textarea cols="80" style="height: 500px;"
|
|
name="policy" id="grading-policy">${grading_policy}</textarea><br/>
|
|
<button type="submit">${_("Save Grading Policy")}</button>
|
|
</form>
|