2020-02-28 06:52:21 -06:00
|
|
|
<ng-template #modal let-hide="close">
|
|
|
|
<div class="modal-header">
|
2020-12-30 07:03:33 -06:00
|
|
|
<h4 i18n class="modal-title">My settings</h4>
|
2020-03-06 09:58:55 -06:00
|
|
|
<my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
|
2020-02-28 06:52:21 -06:00
|
|
|
</div>
|
2020-06-16 04:00:35 -05:00
|
|
|
|
2020-02-28 06:52:21 -06:00
|
|
|
<div class="modal-body">
|
2021-01-08 16:16:22 -06:00
|
|
|
<div i18n class="mb-4 font-italic">These settings apply only to your session on this instance.</div>
|
2020-12-30 07:03:33 -06:00
|
|
|
|
2020-02-28 06:52:21 -06:00
|
|
|
<div i18n class="mb-4 quick-settings-title">Display settings</div>
|
|
|
|
|
2020-06-23 07:10:17 -05:00
|
|
|
<my-user-video-settings
|
2020-06-16 04:00:35 -05:00
|
|
|
*ngIf="!isUserLoggedIn()"
|
|
|
|
[user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"
|
|
|
|
>
|
|
|
|
|
2020-02-28 06:52:21 -06:00
|
|
|
<ng-container ngProjectAs="inner-title">
|
|
|
|
<div i18n class="mb-4 mt-4 quick-settings-title">Video settings</div>
|
|
|
|
</ng-container>
|
2020-06-23 07:10:17 -05:00
|
|
|
</my-user-video-settings>
|
2020-02-28 06:52:21 -06:00
|
|
|
|
|
|
|
<div i18n class="mb-4 mt-4 quick-settings-title">Interface settings</div>
|
|
|
|
|
2020-06-23 07:10:17 -05:00
|
|
|
<my-user-interface-settings
|
2020-06-16 04:00:35 -05:00
|
|
|
*ngIf="!isUserLoggedIn()"
|
|
|
|
[user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"
|
2020-06-23 07:10:17 -05:00
|
|
|
></my-user-interface-settings>
|
2020-02-28 06:52:21 -06:00
|
|
|
</div>
|
|
|
|
</ng-template>
|