Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions lms/templates/instructor/instructor_dashboard_2/extensions.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ <h3 class="hd hd-3">${_("Individual due date extensions")}</h3>
</p>
<p>
${_("Specify the {platform_name} email address or username of a student "
"here:").format(platform_name=settings.PLATFORM_NAME)}
"here*:").format(platform_name=settings.PLATFORM_NAME)}
<input type="text" name="student" placeholder="${_("Student Email or Username")}">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should also have required attribute for the input here.

</p>
<p>
${_("Choose the graded subsection:")}
${_("Choose the graded subsection*:")}
<select name="url">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should also have required attribute for the input here.

<option value="">Choose one</option>
%for title, url in section_data['units_with_due_dates']:
Expand All @@ -28,7 +28,7 @@ <h3 class="hd hd-3">${_("Individual due date extensions")}</h3>
<% format_string="MM/DD/YYYY HH:MM" %>
<p>
## Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the format the system requires.
${_("Specify the extension due date and time (in UTC; please specify {format_string}).").format(format_string=format_string)}</p>
${_("Specify the extension due date and time (in UTC; please specify {format_string}).").format(format_string=format_string)}*</p>
<p><input type="text" name="due_datetime"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should also have required attribute for the input here.

placeholder="${format_string}"/> <input type="text" name="reason" placeholder="${_('Reason for extension')}" size=40 />

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should also have required attribute for the input here.

</p>
Expand All @@ -52,7 +52,7 @@ <h3 class="hd hd-3">${_("Viewing granted extensions")}</h3>
"students who have extensions for the given subsection.")}
</p>
<p>
${_("Choose the graded subsection:")}
${_("Choose the graded subsection*:")}
<select name="url">
<option value="">Choose one</option>
%for title, url in section_data['units_with_due_dates']:
Expand All @@ -68,7 +68,7 @@ <h3 class="hd hd-3">${_("Viewing granted extensions")}</h3>
</p>
<p>
${_("Specify the {platform_name} email address or username of a student "
"here:").format(platform_name=settings.PLATFORM_NAME)}
"here*:").format(platform_name=settings.PLATFORM_NAME)}
<input type="text" name="student" placeholder="${_("Student Email or Username")}">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should also have required attribute for the input here.

<input type="button" name="show-student-extensions"
value="${_("List date extensions for student")}"
Expand All @@ -91,11 +91,11 @@ <h3 class="hd hd-3">${_("Resetting extensions")}</h3>
</p>
<p>
${_("Specify the {platform_name} email address or username of a student "
"here:").format(platform_name=settings.PLATFORM_NAME)}
"here*:").format(platform_name=settings.PLATFORM_NAME)}
<input type="text" name="student" placeholder="${_("Student Email or Username")}">
</p>
<p>
${_("Choose the graded subsection:")}
${_("Choose the graded subsection*:")}
<select name="url">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should also have required attribute for the input here.

<option value="">Choose one</option>
%for title, url in section_data['units_with_due_dates']:
Expand Down