]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/shared/video-edit.component.html
f4ec4f95c5d7792d4c4785af76d3aa6a8dd1cbc4
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.component.html
1 <div class="video-edit row" [formGroup]="form">
2 <tabset class="root-tabset bootstrap">
3
4 <tab heading="Basic info">
5 <div class="col-md-8">
6 <div class="form-group">
7 <label for="name">Title</label>
8 <input type="text" id="name" formControlName="name" />
9 <div *ngIf="formErrors.name" class="form-error">
10 {{ formErrors.name }}
11 </div>
12 </div>
13
14 <div class="form-group">
15 <label class="label-tags">Tags</label> <span>(press Enter to add)</span>
16 <tag-input
17 [ngModel]="tags" [validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
18 formControlName="tags" maxItems="5" modelAsStrings="true"
19 ></tag-input>
20 </div>
21
22 <div class="form-group">
23 <label for="description">Description</label>
24 <my-help helpType="markdownText" preHtml="Video descriptions are truncated by default and require manual action to expand them."></my-help>
25 <my-markdown-textarea truncate="250" formControlName="description"></my-markdown-textarea>
26
27 <div *ngIf="formErrors.description" class="form-error">
28 {{ formErrors.description }}
29 </div>
30 </div>
31 </div>
32
33 <div class="col-md-4">
34 <div class="form-group">
35 <label>Channel</label>
36 <div class="peertube-select-disabled-container">
37 <select formControlName="channelId">
38 <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
39 </select>
40 </div>
41 </div>
42
43 <div class="form-group">
44 <label for="category">Category</label>
45 <div class="peertube-select-container">
46 <select id="category" formControlName="category">
47 <option></option>
48 <option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option>
49 </select>
50 </div>
51
52 <div *ngIf="formErrors.category" class="form-error">
53 {{ formErrors.category }}
54 </div>
55 </div>
56
57 <div class="form-group">
58 <label for="licence">Licence</label>
59 <div class="peertube-select-container">
60 <select id="licence" formControlName="licence">
61 <option></option>
62 <option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option>
63 </select>
64 </div>
65
66 <div *ngIf="formErrors.licence" class="form-error">
67 {{ formErrors.licence }}
68 </div>
69 </div>
70
71 <div class="form-group">
72 <label for="language">Language</label>
73 <div class="peertube-select-container">
74 <select id="language" formControlName="language">
75 <option></option>
76 <option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option>
77 </select>
78 </div>
79
80 <div *ngIf="formErrors.language" class="form-error">
81 {{ formErrors.language }}
82 </div>
83 </div>
84
85 <div class="form-group">
86 <label for="privacy">Privacy</label>
87 <div class="peertube-select-container">
88 <select id="privacy" formControlName="privacy">
89 <option></option>
90 <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
91 </select>
92 </div>
93
94 <div *ngIf="formErrors.privacy" class="form-error">
95 {{ formErrors.privacy }}
96 </div>
97 </div>
98
99 <div class="form-group form-group-checkbox">
100 <input type="checkbox" id="nsfw" formControlName="nsfw" />
101 <label for="nsfw"></label>
102 <label for="nsfw">This video contains mature or explicit content</label>
103 </div>
104
105 <div class="form-group form-group-checkbox">
106 <input type="checkbox" id="commentsEnabled" formControlName="commentsEnabled" />
107 <label for="commentsEnabled"></label>
108 <label for="commentsEnabled">Enable video comments</label>
109 </div>
110
111 </div>
112 </tab>
113
114 <tab heading="Advanced settings">
115 <div class="col-md-12 advanced-settings">
116 <div class="form-group">
117 <my-video-image
118 inputLabel="Upload thumbnail" inputName="thumbnailfile" formControlName="thumbnailfile"
119 previewWidth="200px" previewHeight="110px"
120 ></my-video-image>
121 </div>
122
123 <div class="form-group">
124 <my-video-image
125 inputLabel="Upload preview" inputName="previewfile" formControlName="previewfile"
126 previewWidth="360px" previewHeight="200px"
127 ></my-video-image>
128 </div>
129
130 <div class="form-group">
131 <label for="support">Support</label>
132 <my-help helpType="markdownEnhanced" preHtml="Short text to tell to people how they can support you (membership platform...)."></my-help>
133 <my-markdown-textarea
134 id="support" formControlName="support" textareaWidth="500px" [previewColumn]="true" markdownType="enhanced"
135 [classes]="{ 'input-error': formErrors['support'] }"
136 ></my-markdown-textarea>
137 <div *ngIf="formErrors.support" class="form-error">
138 {{ formErrors.support }}
139 </div>
140 </div>
141 </div>
142 </tab>
143
144 </tabset>
145
146 </div>