-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Export): Create export gradebook route (#1731)
- Loading branch information
1 parent
7568dab
commit 590b3a5
Showing
13 changed files
with
399 additions
and
297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
...nitor/dataExport/export-one-workgroup-per-row/export-one-workgroup-per-row.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<div class="view-content view-content--with-sidemenu top-content"> | ||
<button | ||
mat-raised-button | ||
color="primary" | ||
(click)="goBack()" | ||
matTooltip="Back" | ||
matTooltipPosition="above" | ||
i18n-matTooltip | ||
> | ||
<mat-icon>arrow_back</mat-icon> | ||
</button> | ||
<h5 i18n>Export Gradebook</h5> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeStudentWork" i18n> | ||
Include Student Work | ||
</mat-checkbox> | ||
</div> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeStudentWorkIds" i18n> | ||
Include Student Work IDs | ||
</mat-checkbox> | ||
</div> | ||
<div *ngIf="canViewStudentNames"> | ||
<mat-checkbox color="primary" [(ngModel)]="includeStudentNames" i18n> | ||
Include Student Names | ||
</mat-checkbox> | ||
</div> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeStudentWorkTimestamps" i18n> | ||
Include Student Work Timestamps | ||
</mat-checkbox> | ||
</div> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeBranchPathTaken" i18n> | ||
Include Branch Path Taken | ||
</mat-checkbox> | ||
</div> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeBranchPathTakenNodeId" i18n> | ||
Include Branch Path Taken Node ID | ||
</mat-checkbox> | ||
</div> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeBranchPathTakenStepTitle" i18n> | ||
Include Branch Path Taken Step Title | ||
</mat-checkbox> | ||
</div> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeScores" i18n>Include Scores</mat-checkbox> | ||
</div> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeScoreTimestamps" i18n> | ||
Include Score Timestamps | ||
</mat-checkbox> | ||
</div> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeComments" i18n> | ||
Include Comments | ||
</mat-checkbox> | ||
</div> | ||
<div> | ||
<mat-checkbox color="primary" [(ngModel)]="includeCommentTimestamps" i18n> | ||
Include Comment Timestamps | ||
</mat-checkbox> | ||
</div> | ||
<select-step-and-component-checkboxes | ||
[(exportStepSelectionType)]="exportStepSelectionType" | ||
[nodes]="nodes" | ||
[projectIdToOrder]="projectIdToOrder" | ||
></select-step-and-component-checkboxes> | ||
<div> | ||
<button mat-raised-button color="primary" (click)="export()" i18n>Export</button> | ||
</div> | ||
</div> |
3 changes: 3 additions & 0 deletions
3
...nitor/dataExport/export-one-workgroup-per-row/export-one-workgroup-per-row.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.mat-icon { | ||
margin: 0px; | ||
} |
Oops, something went wrong.