]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-user-settings/user-video-settings.component.html
Migrate to bootstrap 5
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-user-settings / user-video-settings.component.html
CommitLineData
c30745f3 1<form role="form" (ngSubmit)="updateDetails()" [formGroup]="form">
4c8749cb 2 <div class="form-group">
4a53fc82 3 <div class="anchor" id="video-sensitive-content-policy"></div> <!-- video-sensitive-content-policy anchor -->
b1d40cff 4 <label i18n for="nsfwPolicy">Default policy on videos containing sensitive content</label>
421d935d
C
5 <my-help>
6 <ng-template ptTemplate="customHtml">
7 <ng-container i18n>
2d6f28a2 8 With <strong>Hide</strong> or <strong>Blur thumbnails</strong>, a confirmation will be requested to watch the video.
421d935d
C
9 </ng-container>
10 </ng-template>
11 </my-help>
0883b324
C
12
13 <div class="peertube-select-container">
a6d5ff76 14 <select id="nsfwPolicy" formControlName="nsfwPolicy" class="form-control">
2bc9bd08 15 <option i18n value="undefined" disabled>Policy for sensitive videos</option>
2d6f28a2 16 <option i18n value="do_not_list">Hide</option>
b1d40cff
C
17 <option i18n value="blur">Blur thumbnails</option>
18 <option i18n value="display">Display</option>
0883b324
C
19 </select>
20 </div>
a0d69908
C
21 </div>
22
4c8749cb 23 <div class="form-group">
4a53fc82 24 <div class="anchor" id="video-languages-subtitles"></div> <!-- video-languages-subtitles anchor -->
20f1ec8d 25 <label i18n for="videoLanguages">Only display videos in the following languages/subtitles</label>
421d935d
C
26 <my-help>
27 <ng-template ptTemplate="customHtml">
20f1ec8d 28 <ng-container i18n>In Recently added, Trending, Local, Most liked and Search pages</ng-container>
421d935d
C
29 </ng-template>
30 </my-help>
3caf77d3
C
31
32 <div>
eaa52952 33 <my-select-languages [maxLanguages]="20" formControlName="videoLanguages"></my-select-languages>
3caf77d3
C
34 </div>
35 </div>
36
d3217560
RK
37 <ng-content select="inner-title"></ng-content>
38
361805c4
C
39 <div class="form-group">
40 <my-peertube-checkbox
a9bfa85d 41 inputName="p2pEnabled" formControlName="p2pEnabled" [recommended]="true"
5411da31
RK
42 i18n-labelText labelText="Help share videos being played"
43 >
44 <ng-container ngProjectAs="description">
8b8bd022 45 <span i18n>The <a routerLink="/about/peertube" fragment="privacy" target="_blank">sharing system</a> implies that some technical information about your system (such as a public IP address) can be sent to other peers, but greatly helps to reduce server load.</span>
5411da31
RK
46 </ng-container>
47 </my-peertube-checkbox>
361805c4 48 </div>
ed638e53 49
361805c4
C
50 <div class="form-group">
51 <my-peertube-checkbox
52 inputName="autoPlayVideo" formControlName="autoPlayVideo"
5411da31
RK
53 i18n-labelText labelText="Automatically play videos"
54 >
55 <ng-container ngProjectAs="description">
56 <span i18n>When on a video page, directly start playing the video.</span>
57 </ng-container>
58 </my-peertube-checkbox>
85c1df6a 59 </div>
6aa54148 60
85c1df6a 61 <div class="form-group">
6aa54148
L
62 <my-peertube-checkbox
63 inputName="autoPlayNextVideo" formControlName="autoPlayNextVideo"
5411da31
RK
64 i18n-labelText labelText="Automatically start playing the next video"
65 >
66 <ng-container ngProjectAs="description">
67 <span i18n>When a video ends, follow up with the next suggested video.</span>
68 </ng-container>
69 </my-peertube-checkbox>
361805c4 70 </div>
c30745f3 71
d3217560 72 <input *ngIf="!reactiveUpdate" type="submit" i18n-value value="Save" [disabled]="!form.valid">
c30745f3 73</form>