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>
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."
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>
18 <div class="form-group">
19 <label i18n for="videoLanguages">Only display videos in the following languages</label>
20 <my-help i18n-customHtml
21 customHtml="In Recently added, Trending, Local and Search pages"
26 [options]="languageItems" formControlName="videoLanguages" showToggleAll="true"
27 [defaultLabel]="getDefaultVideoLanguageLabel()" [selectedItemsLabel]="getSelectedVideoLanguageLabel()"
28 emptyFilterMessage="No results found" i18n-emptyFilterMessage
33 <div class="form-group">
35 inputName="webTorrentEnabled" formControlName="webTorrentEnabled"
36 i18n-labelText labelText="Use WebTorrent to exchange parts of the video with others"
37 ></my-peertube-checkbox>
40 <div class="form-group">
42 inputName="autoPlayVideo" formControlName="autoPlayVideo"
43 i18n-labelText labelText="Automatically plays video"
44 ></my-peertube-checkbox>
47 <input type="submit" i18n-value value="Save" [disabled]="!form.valid">