-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathedit-match-advanced.component.html
More file actions
49 lines (49 loc) · 1.88 KB
/
Copy pathedit-match-advanced.component.html
File metadata and controls
49 lines (49 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<div>
<mat-checkbox
color="primary"
class="checkbox"
[(ngModel)]="componentContent.canCreateChoices"
(ngModelChange)="componentChanged()"
i18n
>
Student Can Create Choices
</mat-checkbox>
</div>
<div>
<mat-checkbox
*ngIf="isNotebookEnabled()"
color="primary"
class="checkbox"
[(ngModel)]="componentContent.importPrivateNotes"
(ngModelChange)="componentChanged()"
>
Show Private Notes As Choices
</mat-checkbox>
</div>
<edit-component-save-button [componentContent]="componentContent"> </edit-component-save-button>
<br />
<edit-component-submit-button [componentContent]="componentContent"> </edit-component-submit-button>
@if (componentContent.showSubmitButton) {
<edit-component-max-submit [componentContent]="componentContent" />
}
<edit-component-default-feedback [componentContent]="componentContent">
</edit-component-default-feedback>
<div fxLayout="column" fxLayoutAlign="start start">
<edit-component-max-score [componentContent]="componentContent"> </edit-component-max-score>
<edit-component-exclude-from-total-score [componentContent]="componentContent">
</edit-component-exclude-from-total-score>
<edit-component-width [componentContent]="componentContent" />
<edit-component-rubric [componentContent]="componentContent"> </edit-component-rubric>
<edit-component-tags [componentContent]="componentContent"> </edit-component-tags>
</div>
<edit-match-connected-components
[nodeId]="nodeId"
[componentId]="componentId"
[allowedConnectedComponentTypes]="allowedConnectedComponentTypes"
[componentContent]="componentContent"
[connectedComponents]="componentContent.connectedComponents"
(connectedComponentsChanged)="connectedComponentsChanged($event)"
>
</edit-match-connected-components>
<edit-component-constraints [componentContent]="component.content" />
<edit-component-json [component]="component"></edit-component-json>