84c78c457e86ccdcf80244d78c6346a841655da7
[oweals/peertube.git] /
1 <form role="form" (ngSubmit)="updateDetails()" [formGroup]="form">
2   <div class="form-group">
3     <label i18n for="nsfwPolicy">Default policy on videos containing sensitive content</label>
4     <my-help>
5       <ng-template ptTemplate="customHtml">
6         <ng-container i18n>
7           With <strong>Do not list</strong> or <strong>Blur thumbnails</strong>, a confirmation will be requested to watch the video.
8         </ng-container>
9       </ng-template>
10     </my-help>
11
12     <div class="peertube-select-container">
13       <select id="nsfwPolicy" formControlName="nsfwPolicy">
14         <option i18n value="do_not_list">Do not list</option>
15         <option i18n value="blur">Blur thumbnails</option>
16         <option i18n value="display">Display</option>
17       </select>
18     </div>
19   </div>
20
21   <div class="form-group">
22     <label i18n for="videoLanguages">Only display videos in the following languages</label>
23     <my-help>
24       <ng-template ptTemplate="customHtml">
25         <ng-container i18n>In Recently added, Trending, Local and Search pages</ng-container>
26       </ng-template>
27     </my-help>
28
29     <div>
30       <p-multiSelect
31         inputId="videoLanguages" [options]="languageItems" formControlName="videoLanguages" showToggleAll="true"
32         [defaultLabel]="getDefaultVideoLanguageLabel()" [selectedItemsLabel]="getSelectedVideoLanguageLabel()"
33         emptyFilterMessage="No results found" i18n-emptyFilterMessage
34       ></p-multiSelect>
35     </div>
36   </div>
37
38   <div class="form-group">
39     <my-peertube-checkbox
40       inputName="webTorrentEnabled" formControlName="webTorrentEnabled"
41       i18n-labelText labelText="Use WebTorrent to exchange parts of the video with others"
42     ></my-peertube-checkbox>
43   </div>
44
45   <div class="form-group">
46     <my-peertube-checkbox
47       inputName="autoPlayVideo" formControlName="autoPlayVideo"
48       i18n-labelText labelText="Automatically plays video"
49     ></my-peertube-checkbox>
50   </div>
51
52   <div class="form-group">
53     <my-peertube-checkbox
54       inputName="autoPlayNextVideo" formControlName="autoPlayNextVideo"
55       i18n-labelText labelText="Automatically starts playing next video"
56     ></my-peertube-checkbox>
57   </div>
58
59   <input type="submit" i18n-value value="Save" [disabled]="!form.valid">
60 </form>