-
Notifications
You must be signed in to change notification settings - Fork 7
fix: added Required Asterisk sign in the labels #660
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: open-release/sumac.master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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")}"> | ||
| </p> | ||
| <p> | ||
| ${_("Choose the graded subsection:")} | ||
| ${_("Choose the graded subsection*:")} | ||
| <select name="url"> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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']: | ||
|
|
@@ -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" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 /> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should also have required attribute for the input here. |
||
| </p> | ||
|
|
@@ -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']: | ||
|
|
@@ -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")}"> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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")}" | ||
|
|
@@ -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"> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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']: | ||
|
|
||
There was a problem hiding this comment.
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.