Skip to content
This repository has been archived by the owner on Apr 24, 2022. It is now read-only.

Commit

Permalink
[TEAMMATES#11547] Remove outdated instructor help information (TEAMMA…
Browse files Browse the repository at this point in the history
  • Loading branch information
fsgmhoward authored Mar 14, 2022
1 parent ab1b48c commit 39ce954
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,6 @@ <h2 id="other-actions">5. Learn about other actions you can perform</h2>
<li>
<a [tmRouterLink]="instructorHelpPath" [queryParams]="{questionId: StudentsSectionQuestions.STUDENT_EDIT_DETAILS, section: Sections.students}">Edit a student's data</a>: change a student's registered name, section or team name, or email address. You can also note down comments on students, for example to inform other instructors of information about a student that they should take note of.
</li>
<li>
<a [tmRouterLink]="instructorHelpPath" [queryParams]="{questionId: StudentsSectionQuestions.STUDENT_EMAIL, section: Sections.students}">Email a group of students</a>: contact students regarding their feedback responses, or the course in general. Also handy for locating the email address of past students.
</li>
<li>
Search: <a [tmRouterLink]="instructorHelpPath" [queryParams]="{questionId: StudentsSectionQuestions.STUDENT_SEARCH, section: Sections.students}">search for students, teams or sections</a>, or <a [tmRouterLink]="instructorHelpPath" [queryParams]="{questionId: SessionsSectionQuestions.SESSION_SEARCH, section: Sections.sessions}">search for questions, responses or comments</a>.
</li>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div>
<h2 class="color-blue" *ngIf="!key || showQuestion.length > 0">Students</h2>
<!-- Section -->
<h4 *ngIf="displaySubsection(0, 3)">Student Records</h4>
<h4 *ngIf="displaySubsection(0, 4)">Student Records</h4>
<!-- Question -->
<tm-instructor-help-panel class="instr-help-qn-first" #question [hidden]="key && !showQuestion.includes(StudentsSectionQuestions.STUDENT_VIEW_PROFILE)"
[id]="StudentsSectionQuestions.STUDENT_VIEW_PROFILE"
Expand Down Expand Up @@ -79,7 +79,7 @@ <h4 *ngIf="displaySubsection(0, 3)">Student Records</h4>
</tm-example-box>
</tm-instructor-help-panel>
<!--Question-->
<tm-instructor-help-panel class="instr-help-qn-last" #question [hidden]="key && !showQuestion.includes(StudentsSectionQuestions.STUDENT_VIEW_RESPONSES)"
<tm-instructor-help-panel #question [hidden]="key && !showQuestion.includes(StudentsSectionQuestions.STUDENT_VIEW_RESPONSES)"
[id]="StudentsSectionQuestions.STUDENT_VIEW_RESPONSES"
headerText="How do I view all the responses a student has given and received?"
[(isPanelExpanded)]="questionsToCollapsed[StudentsSectionQuestions.STUDENT_VIEW_RESPONSES]">
Expand All @@ -96,10 +96,8 @@ <h4 *ngIf="displaySubsection(0, 3)">Student Records</h4>
</li>
</ol>
</tm-instructor-help-panel>
<!-- Section -->
<h4 *ngIf="displaySubsection(3, 5)">Finding Students</h4>
<!--Question -->
<tm-instructor-help-panel class="instr-help-qn-first" #question [hidden]="key && !showQuestion.includes(StudentsSectionQuestions.STUDENT_SEARCH)"
<tm-instructor-help-panel class="instr-help-qn-last" #question [hidden]="key && !showQuestion.includes(StudentsSectionQuestions.STUDENT_SEARCH)"
[id]="StudentsSectionQuestions.STUDENT_SEARCH"
headerText="How do I search for a student in my course?"
[(isPanelExpanded)]="questionsToCollapsed[StudentsSectionQuestions.STUDENT_SEARCH]">
Expand Down Expand Up @@ -142,26 +140,8 @@ <h4 *ngIf="displaySubsection(3, 5)">Finding Students</h4>
<tm-student-result-table [studentTables]="exampleMultipleStudentResultTables" [isActionButtonsEnabled]="false"></tm-student-result-table>
</tm-example-box>
</tm-instructor-help-panel>
<!--Question-->
<tm-instructor-help-panel class="instr-help-qn-last" #question [hidden]="key && !showQuestion.includes(StudentsSectionQuestions.STUDENT_EMAIL)"
[id]="StudentsSectionQuestions.STUDENT_EMAIL"
headerText="How do I email a student or students in my course?"
[(isPanelExpanded)]="questionsToCollapsed[StudentsSectionQuestions.STUDENT_EMAIL]">
<ol>
<li>
On the <b>Students</b> page, filter out the selected student/students.
</li>
<li>
Click
<button class="btn btn-sm btn-secondary">Copy Emails</button> to copy their email addresses to your clipboard.
</li>
<li>
Use your preferred email provider to email the students.
</li>
</ol>
</tm-instructor-help-panel>
<!-- Section -->
<h4 *ngIf="displaySubsection(5, 7)">Student Accounts</h4>
<h4 *ngIf="displaySubsection(4, 6)">Student Accounts</h4>
<!--Question-->
<tm-instructor-help-panel class="instr-help-qn-first" #question [hidden]="key && !showQuestion.includes(StudentsSectionQuestions.STUDENT_GOOGLE_ACCOUNT)"
[id]="StudentsSectionQuestions.STUDENT_GOOGLE_ACCOUNT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export class InstructorHelpStudentsSectionComponent extends InstructorHelpSectio
StudentsSectionQuestions.STUDENT_EDIT_DETAILS,
StudentsSectionQuestions.STUDENT_VIEW_RESPONSES,
StudentsSectionQuestions.STUDENT_SEARCH,
StudentsSectionQuestions.STUDENT_EMAIL,
StudentsSectionQuestions.STUDENT_GOOGLE_ACCOUNT,
StudentsSectionQuestions.STUDENT_CHANGE_ID,
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ export enum StudentsSectionQuestions {
*/
STUDENT_SEARCH = 'student-search',

/**
* How do I email a student or students in my course?
*/
STUDENT_EMAIL = 'student-email',

/**
* Is it compulsory for students to use Google accounts?
*/
Expand Down

0 comments on commit 39ce954

Please sign in to comment.