Commit f4209803 by Alison Hodges

Remove "instructor" label or change to "Admin"

Clarifies what the roles are, makes Studio and LMS naming parallel.
parent 1e8ebc80
...@@ -53,7 +53,7 @@ from django.core.urlresolvers import reverse ...@@ -53,7 +53,7 @@ from django.core.urlresolvers import reverse
<li class="field text required create-user-email"> <li class="field text required create-user-email">
<label for="user-email-input">${_("User's Email Address")}</label> <label for="user-email-input">${_("User's Email Address")}</label>
<input id="user-email-input" class="user-email-input" name="user-email" type="text" placeholder="${_('example: username@domain.com')}" value=""> <input id="user-email-input" class="user-email-input" name="user-email" type="text" placeholder="${_('example: username@domain.com')}" value="">
<span class="tip tip-stacked">${_("Please provide the email address of the course staff member you'd like to add")}</span> <span class="tip tip-stacked">${_("Provide an email address to add the user as Staff")}</span>
</li> </li>
</ol> </ol>
</fieldset> </fieldset>
...@@ -94,14 +94,15 @@ from django.core.urlresolvers import reverse ...@@ -94,14 +94,15 @@ from django.core.urlresolvers import reverse
<aside class="content-supplementary" role="complementary"> <aside class="content-supplementary" role="complementary">
<div class="bit"> <div class="bit">
<h3 class="title-3">${_("Course Team Roles")}</h3> <h3 class="title-3">${_("Course Team Roles")}</h3>
<p>${_("Course team members, or staff, are course co-authors. They have full writing and editing privileges on all course content.")}</p> <p>${_("Course team members with the Staff role are course co-authors. They have full writing and editing privileges on all course content.")}</p>
<p>${_("Admins are course team members who can add and remove other course team members.")}</p> <p>${_("Admins are course team members who can add and remove other course team members.")}</p>
<p>${_("All course team members are automatically enrolled in the course and can access content in Studio, the LMS, and Insights.")}</p>
</div> </div>
% if show_transfer_ownership_hint: % if show_transfer_ownership_hint:
<div class="bit"> <div class="bit">
<h3 class="title-3">${_("Transferring Ownership")}</h3> <h3 class="title-3">${_("Transferring Ownership")}</h3>
<p>${_("Every course must have an Admin. If you're the Admin and you want transfer ownership of the course, click Add admin access to make another user the Admin, then ask that user to remove you from the Course Team list.")}</p> <p>${_("Every course must have an Admin. If you are the Admin and you want to transfer ownership of the course, click Add admin access to make another user the Admin, then ask that user to remove you from the Course Team list.")}</p>
</div> </div>
% endif % endif
</aside> </aside>
......
...@@ -95,9 +95,9 @@ from django.core.urlresolvers import reverse ...@@ -95,9 +95,9 @@ from django.core.urlresolvers import reverse
<div class="bit"> <div class="bit">
<h3 class="title-3">${_("Library Access Roles")}</h3> <h3 class="title-3">${_("Library Access Roles")}</h3>
<p>${_("There are three access roles for libraries: User, Staff, and Admin.")}</p> <p>${_("There are three access roles for libraries: User, Staff, and Admin.")}</p>
<p>${_("Users can view library content and can reference or use library components in their courses, but they cannot edit the contents of a library.")}</p> <p>${_("Library Users can view library content and can reference or use library components in their courses, but they cannot edit the contents of a library.")}</p>
<p>${_("Staff are content co-authors. They have full editing privileges on the contents of a library.")}</p> <p>${_("Library Staff are content co-authors. They have full editing privileges on the contents of a library.")}</p>
<p>${_("Admins have full editing privileges and can also add and remove other team members. There must be at least one user with Admin privileges in a library.")}</p> <p>${_("Library Admins have full editing privileges and can also add and remove other team members. There must be at least one user with the Admin role in a library.")}</p>
</div> </div>
</aside> </aside>
</section> </section>
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
<p id="task-history-single-help"> <p id="task-history-single-help">
Rescoring runs in the background, and status for active tasks will appear in the 'Pending Instructor Tasks' table. To see status for all tasks submitted for this problem and student, click on this button: Rescoring runs in the background, and status for active tasks will appear in the 'Pending Tasks' table. To see status for all tasks submitted for this problem and student, click on this button:
</p> </p>
<p><input type="button" name="task-history-single" value="Show Background Task History for Student" data-endpoint="/courses/PU/FSc/2014_T4/instructor/api/list_instructor_tasks" aria-describedby="task-history-single-help"></p> <p><input type="button" name="task-history-single" value="Show Background Task History for Student" data-endpoint="/courses/PU/FSc/2014_T4/instructor/api/list_instructor_tasks" aria-describedby="task-history-single-help"></p>
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
<p id="entrance-exam-task-history-help"> <p id="entrance-exam-task-history-help">
Rescoring runs in the background, and status for active tasks will appear in the 'Pending Instructor Tasks' table. To see status for all tasks submitted for this problem and student, click on this button: Rescoring runs in the background, and status for active tasks will appear in the 'Pending Tasks' table. To see status for all tasks submitted for this problem and student, click on this button:
</p> </p>
<p><input type="button" name="entrance-exam-task-history" value="Show Student's Exam Adjustment History" data-endpoint="/courses/PU/FSc/2014_T4/instructor/api/list_entrance_exam_instructor_tasks" aria-describedby="entrance-exam-task-history-help"></p> <p><input type="button" name="entrance-exam-task-history" value="Show Student's Exam Adjustment History" data-endpoint="/courses/PU/FSc/2014_T4/instructor/api/list_entrance_exam_instructor_tasks" aria-describedby="entrance-exam-task-history-help"></p>
...@@ -137,7 +137,7 @@ ...@@ -137,7 +137,7 @@
<div class="running-tasks-container action-type-container"> <div class="running-tasks-container action-type-container">
<hr> <hr>
<h2> Pending Instructor Tasks </h2> <h2> Pending Tasks </h2>
<div class="running-tasks-section" style="display: block;"> <div class="running-tasks-section" style="display: block;">
<p>The status for any active tasks appears in a table below. </p> <p>The status for any active tasks appears in a table below. </p>
<br> <br>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
%if settings.FEATURES.get('DISPLAY_ANALYTICS_ENROLLMENTS'): %if settings.FEATURES.get('DISPLAY_ANALYTICS_ENROLLMENTS'):
## Translators: 'track' refers to the enrollment type ('honor', 'verified', or 'audit') ## Translators: 'track' refers to the enrollment type ('honor', 'verified', or 'audit')
<span class="tip">${_("Number of enrollees (instructors, staff members, and students) by track")}</span> <span class="tip">${_("Number of enrollees (admins, staff, and students) by track")}</span>instructors
<br/><br/> <br/><br/>
<% modes = section_data['enrollment_count'] %> <% modes = section_data['enrollment_count'] %>
<table> <table>
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
%if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'): %if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'):
<div class="running-tasks-container action-type-container"> <div class="running-tasks-container action-type-container">
<hr> <hr>
<h2> ${_("Pending Instructor Tasks")} </h2> <h2> ${_("Pending Tasks")} </h2>
<div class="running-tasks-section"> <div class="running-tasks-section">
<p>${_("The status for any active tasks appears in a table below.")} </p> <p>${_("The status for any active tasks appears in a table below.")} </p>
<br /> <br />
......
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
%if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'): %if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'):
<div class="running-tasks-container action-type-container"> <div class="running-tasks-container action-type-container">
<hr> <hr>
<h2> ${_("Pending Instructor Tasks")} </h2> <h2> ${_("Pending Tasks")} </h2>
<div class="running-tasks-section"> <div class="running-tasks-section">
<p>${_("The status for any active tasks appears in a table below.")} </p> <p>${_("The status for any active tasks appears in a table below.")} </p>
<br /> <br />
......
...@@ -126,7 +126,7 @@ import pytz ...@@ -126,7 +126,7 @@ import pytz
%if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'): %if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'):
<div class="running-tasks-container action-type-container"> <div class="running-tasks-container action-type-container">
<hr> <hr>
<h2> ${_("Pending Instructor Tasks")} </h2> <h2> ${_("Pending Tasks")} </h2>
<div class="running-tasks-section"> <div class="running-tasks-section">
<p>${_("The status for any active tasks appears in a table below.")} </p> <p>${_("The status for any active tasks appears in a table below.")} </p>
<br/> <br/>
......
...@@ -114,7 +114,7 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_ ...@@ -114,7 +114,7 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_
<p> <p>
<label for="student-ids-for-beta"> <label for="student-ids-for-beta">
${_("Enter email addresses and/or usernames separated by new lines or commas.")}<br/> ${_("Enter email addresses and/or usernames separated by new lines or commas.")}<br/>
${_("Note: Users must have an activated {platform_name} account before they can be enrolled as a beta tester.").format(platform_name=settings.PLATFORM_NAME)} ${_("Note: Users must have an activated {platform_name} account before they can be enrolled as beta testers.").format(platform_name=settings.PLATFORM_NAME)}
</label> </label>
<textarea rows="6" cols="50" name="student-ids-for-beta" placeholder="${_("Email Addresses/Usernames")}" spellcheck="false"></textarea> <textarea rows="6" cols="50" name="student-ids-for-beta" placeholder="${_("Email Addresses/Usernames")}" spellcheck="false"></textarea>
...@@ -156,13 +156,13 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_ ...@@ -156,13 +156,13 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_
<div class="member-lists-management membership-section"> <div class="member-lists-management membership-section">
## Translators: an "Administration List" is a list, such as Course Staff, that users can be added to. ## Translators: an "Administration List" is a list, such as Course Staff, that users can be added to.
<h2> ${_("Administration List Management")} </h2> <h2> ${_("Course Team Management")} </h2>
<div class="request-response-error"></div> <div class="request-response-error"></div>
<div class="wrapper-member-select"> <div class="wrapper-member-select">
## Translators: an "Administrator Group" is a group, such as Course Staff, that users can be added to. ## Translators: an "Administrator Group" is a group, such as Course Staff, that users can be added to.
<label for="member-lists-selector">${_("Select an Administrator Group:")}</label> <label for="member-lists-selector">${_("Select a course team role:")}</label>
<select id="member-lists-selector" class="member-lists-selector"> <select id="member-lists-selector" class="member-lists-selector">
<option> ${_("Getting available lists...")} </option> <option> ${_("Getting available lists...")} </option>
</select> </select>
...@@ -172,21 +172,21 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_ ...@@ -172,21 +172,21 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_
%if not section_data['access']['instructor']: %if not section_data['access']['instructor']:
<p> <p>
${_("Staff cannot modify staff or beta tester lists. To modify these lists, " ${_("Staff cannot modify these lists. To manage course team membership, "
"contact your instructor and ask them to add you as an instructor for staff " "a course Admin must give you the Admin role to add Staff or Beta Testers, "
"and beta lists, or a discussion admin for discussion management.")} "or the Discussion Admin role to add discussion moderators and TAs.")}
</p> </p>
%endif %endif
%if section_data['access']['instructor']: %if section_data['access']['instructor']:
<div class="auth-list-container" <div class="auth-list-container"
data-rolename="staff" data-rolename="staff"
data-display-name="${_("Course Staff")}" data-display-name="${_("Staff")}"
data-info-text=" data-info-text="
${_("Course staff can help you manage limited aspects of your course. Staff " ${_("Course team members with the Staff role help you manage your course. "
"can enroll and unenroll students, as well as modify their grades and " "Staff can enroll and unenroll learners, as well as modify their grades and "
"see all course data. Course staff are not automatically given access " "access all course data. Staff also have access to your course in Studio and "
"to Studio and will not be able to edit your course.")}" "Insights. You can only give course team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_course_role_members_url'] }" data-list-endpoint="${ section_data['list_course_role_members_url'] }"
data-modify-endpoint="${ section_data['modify_access_url'] }" data-modify-endpoint="${ section_data['modify_access_url'] }"
data-add-button-label="${_("Add Staff")}" data-add-button-label="${_("Add Staff")}"
...@@ -194,22 +194,25 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_ ...@@ -194,22 +194,25 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_
<div class="auth-list-container" <div class="auth-list-container"
data-rolename="instructor" data-rolename="instructor"
data-display-name="${_("Instructors")}" data-display-name="${_("Admin")}"
data-info-text=" data-info-text="
${_("Instructors are the core administration of your course. Instructors can " ${_("Course team members with the Admin role help you manage your course. "
"add and remove course staff, as well as administer discussion access.")}" "They can do all of the tasks that Staff can do, and can also add and "
"remove the Staff and Admin roles, discussion moderation roles, and the "
"beta tester role to manage course team membership. You can only give "
"course team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_course_role_members_url'] }" data-list-endpoint="${ section_data['list_course_role_members_url'] }"
data-modify-endpoint="${ section_data['modify_access_url'] }" data-modify-endpoint="${ section_data['modify_access_url'] }"
data-add-button-label="${_("Add Instructor")}" data-add-button-label="${_("Add Admin")}"
></div> ></div>
<div class="auth-list-container" <div class="auth-list-container"
data-rolename="beta" data-rolename="beta"
data-display-name="${_("Beta Testers")}" data-display-name="${_("Beta Testers")}"
data-info-text=" data-info-text="
${_("Beta testers can see course content before the rest of the students. " ${_("Beta Testers can see course content before otehr learners. "
"They can make sure that the content works, but have no additional " "They can make sure that the content works, but have no additional "
"privileges.")}" "privileges. You can only give course team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_course_role_members_url'] }" data-list-endpoint="${ section_data['list_course_role_members_url'] }"
data-modify-endpoint="${ section_data['modify_access_url'] }" data-modify-endpoint="${ section_data['modify_access_url'] }"
data-add-button-label="${_("Add Beta Tester")}" data-add-button-label="${_("Add Beta Tester")}"
...@@ -219,9 +222,11 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_ ...@@ -219,9 +222,11 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_
data-rolename="Administrator" data-rolename="Administrator"
data-display-name="${_("Discussion Admins")}" data-display-name="${_("Discussion Admins")}"
data-info-text=" data-info-text="
${_("Discussion admins can edit or delete any post, clear misuse flags, close " ${_("Discussion Admins can edit or delete any post, clear misuse flags, close "
"and re-open threads, endorse responses, and see posts from all cohorts. " "and re-open threads, endorse responses, and see posts from all cohorts. "
"They CAN add/delete other moderators and their posts are marked as 'staff'.")}" "Their posts are marked as 'staff'. They can also add and remove the "
"discussion moderation roles to manage course team membership. You can "
"only give course team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_forum_members_url'] }" data-list-endpoint="${ section_data['list_forum_members_url'] }"
data-modify-endpoint="${ section_data['update_forum_role_membership_url'] }" data-modify-endpoint="${ section_data['update_forum_role_membership_url'] }"
data-add-button-label="${_("Add Discussion Admin")}" data-add-button-label="${_("Add Discussion Admin")}"
...@@ -233,9 +238,11 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_ ...@@ -233,9 +238,11 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_
data-rolename="Moderator" data-rolename="Moderator"
data-display-name="${_("Discussion Moderators")}" data-display-name="${_("Discussion Moderators")}"
data-info-text=" data-info-text="
${_("Discussion moderators can edit or delete any post, clear misuse flags, close " ${_("Discussion Moderators can edit or delete any post, clear misuse flags, close "
"and re-open threads, endorse responses, and see posts from all cohorts. " "and re-open threads, endorse responses, and see posts from all cohorts. "
"They CANNOT add/delete other moderators and their posts are marked as 'staff'.")}" "Their posts are marked as 'staff'. They cannot manage course team membership by "
"adding or removing discussion moderation roles. You can only give course team "
"roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_forum_members_url'] }" data-list-endpoint="${ section_data['list_forum_members_url'] }"
data-modify-endpoint="${ section_data['update_forum_role_membership_url'] }" data-modify-endpoint="${ section_data['update_forum_role_membership_url'] }"
data-add-button-label="${_("Add Moderator")}" data-add-button-label="${_("Add Moderator")}"
...@@ -246,9 +253,10 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_ ...@@ -246,9 +253,10 @@ from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_
data-display-name="${_("Discussion Community TAs")}" data-display-name="${_("Discussion Community TAs")}"
data-info-text=" data-info-text="
${_("Community TA's are members of the community whom you deem particularly " ${_("Community TA's are members of the community whom you deem particularly "
"helpful on the discussion boards. They can edit or delete any post, clear misuse flags, " "helpful on the discussion boards. They can edit or delete any post, clear "
"close and re-open threads, endorse responses, and see posts from all cohorts. " "misuse flags, close and re-open threads, endorse responses, and see posts from "
"Their posts are marked 'Community TA'.")}" all cohorts. Their posts are marked as 'Community TA'. You can only give course "
"team roles to enrolled users.")}"
data-list-endpoint="${ section_data['list_forum_members_url'] }" data-list-endpoint="${ section_data['list_forum_members_url'] }"
data-modify-endpoint="${ section_data['update_forum_role_membership_url'] }" data-modify-endpoint="${ section_data['update_forum_role_membership_url'] }"
data-add-button-label="${_("Add Community TA")}" data-add-button-label="${_("Add Community TA")}"
......
...@@ -10,14 +10,14 @@ ...@@ -10,14 +10,14 @@
<select id="id_to" name="send_to"> <select id="id_to" name="send_to">
<option value="myself">${_("Myself")}</option> <option value="myself">${_("Myself")}</option>
%if to_option == "staff": %if to_option == "staff":
<option value="staff" selected="selected">${_("Staff and instructors")}</option> <option value="staff" selected="selected">${_("Staff and admins")}</option>
%else: %else:
<option value="staff">${_("Staff and instructors")}</option> <option value="staff">${_("Staff and admins")}</option>
%endif %endif
%if to_option == "all": %if to_option == "all":
<option value="all" selected="selected">${_("All (students, staff and instructors)")}</option> <option value="all" selected="selected">${_("All (students, staff, and admins)")}</option>
%else: %else:
<option value="all">${_("All (students, staff and instructors)")}</option> <option value="all">${_("All (students, staff, and admins)")}</option>
%endif %endif
</select> </select>
</li> </li>
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
%if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'): %if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'):
<div class="running-tasks-container action-type-container"> <div class="running-tasks-container action-type-container">
<hr> <hr>
<h2> ${_("Pending Instructor Tasks")} </h2> <h2> ${_("Pending Tasks")} </h2>
<div class="running-tasks-section"> <div class="running-tasks-section">
<p>${_("Email actions run in the background. The status for any active tasks - including email tasks - appears in a table below.")} </p> <p>${_("Email actions run in the background. The status for any active tasks - including email tasks - appears in a table below.")} </p>
<br /> <br />
......
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
%if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS') and section_data['access']['instructor']: %if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS') and section_data['access']['instructor']:
<p id="task-history-single-help"> <p id="task-history-single-help">
${_("Rescoring runs in the background, and status for active tasks will appear in the 'Pending Instructor Tasks' table. " ${_("Rescoring runs in the background, and status for active tasks will appear in the 'Pending Tasks' table. "
"To see status for all tasks submitted for this problem and student, click on this button:")} "To see status for all tasks submitted for this problem and student, click on this button:")}
</p> </p>
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
%if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS') and section_data['access']['instructor']: %if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS') and section_data['access']['instructor']:
<p id="entrance-exam-task-history-help"> <p id="entrance-exam-task-history-help">
${_("Rescoring runs in the background, and status for active tasks will appear in the 'Pending Instructor Tasks' table. " ${_("Rescoring runs in the background, and status for active tasks will appear in the 'Pending Tasks' table. "
"To see status for all tasks submitted for this problem and student, click on this button:")} "To see status for all tasks submitted for this problem and student, click on this button:")}
</p> </p>
...@@ -161,7 +161,7 @@ ...@@ -161,7 +161,7 @@
%if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'): %if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'):
<div class="running-tasks-container action-type-container"> <div class="running-tasks-container action-type-container">
<hr> <hr>
<h2> ${_("Pending Instructor Tasks")} </h2> <h2> ${_("Pending Tasks")} </h2>
<div class="running-tasks-section"> <div class="running-tasks-section">
<p>${_("The status for any active tasks appears in a table below.")} </p> <p>${_("The status for any active tasks appears in a table below.")} </p>
<br /> <br />
......
...@@ -5,7 +5,7 @@ nothing_to_grade_message = _( ...@@ -5,7 +5,7 @@ nothing_to_grade_message = _(
{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do: {p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:
{ul_tag} {ul_tag}
{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag} {li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}
{li_tag}The instructor needs to score the essays that are used to help you better understand the grading {li_tag}The course team needs to score the essays that are used to help you better understand the grading
criteria.{end_li_tag} criteria.{end_li_tag}
{li_tag}There must be submissions that are waiting for grading.{end_li_tag} {li_tag}There must be submissions that are waiting for grading.{end_li_tag}
{end_ul_tag} {end_ul_tag}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment