50f798c792554d4accdbdfea3f81433c1233532b
[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       helpType="custom" i18n-customHtml
6       customHtml="With <strong>Do not list</strong> or <strong>Blur thumbnails</strong>, a confirmation will be requested to watch the video."
7     ></my-help>
8
9     <div class="peertube-select-container">
10       <select id="nsfwPolicy" formControlName="nsfwPolicy">
11         <option i18n value="do_not_list">Do not list</option>
12         <option i18n value="blur">Blur thumbnails</option>
13         <option i18n value="display">Display</option>
14       </select>
15     </div>
16   </div>
17
18   <div class="form-group">
19     <label i18n for="webTorrentEnabled">Policy regarding P2P technologies</label>
20
21     <div class="peertube-select-container">
22       <select id="webTorrentEnabled" formControlName="webTorrentEnabled">
23         <option i18n value="enable">Enable WebTorrent</option>
24         <option i18n value="disable">Disable WebTorrent</option>
25       </select>
26     </div>
27   </div>
28
29   <my-peertube-checkbox
30     inputName="webTorrentEnabled" formControlName="webTorrentEnabled"
31     i18n-labelText labelText="Use WebTorrent to exchange parts of the video with others"
32   ></my-peertube-checkbox>
33
34   <my-peertube-checkbox
35     inputName="autoPlayVideo" formControlName="autoPlayVideo"
36     i18n-labelText labelText="Automatically plays video"
37   ></my-peertube-checkbox>
38
39   <input type="submit" i18n-value value="Save" [disabled]="!form.valid">
40 </form>