25 lines
1021 B
HTML
25 lines
1021 B
HTML
<%page expression_filter="h"/>
|
|
<%! from django.utils.translation import ugettext as _ %>
|
|
|
|
<h2 class="hd hd-2">${_("Grading Policy")}</h2>
|
|
|
|
<div id="warn-coach" class="wrapper-msg urgency-high warning">
|
|
<div class="msg">
|
|
<span class="msg-icon fa fa-warning" aria-hidden="true"></span>
|
|
<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>
|
|
|
|
<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>
|