- for self paced courses, if a sequential's due date has passed and it is incomplete, allow the user to reset the start_date for the related schedule to now, thus shifting all due dates for all sequentials within the course by the pre determined due date offset. - add historical table to the Schedule model.
14 lines
539 B
HTML
14 lines
539 B
HTML
## mako
|
|
|
|
<%page expression_filter="h"/>
|
|
<%!
|
|
from django.utils.translation import ugettext as _
|
|
%>
|
|
<div class="reset-deadlines-banner">
|
|
<div class="reset-deadlines-text">${_("It looks like you've missed some important deadlines. Reset your deadlines and get started today.")}</div>
|
|
<form method="post" action="${reset_deadlines_url}">
|
|
<input type="hidden" id="csrf_token" name="csrfmiddlewaretoken" value="${csrf_token}">
|
|
<button class="reset-deadlines-button">${_("Reset my deadlines")}</button>
|
|
</form>
|
|
</div>
|