2017-12-07 08:48:47 -05:00
|
|
|
<div class="video-edit row" [formGroup]="form">
|
2017-12-07 05:15:19 -05:00
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div class="col-md-8">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="name">Title</label>
|
|
|
|
<input type="text" id="name" formControlName="name" />
|
|
|
|
<div *ngIf="formErrors.name" class="form-error">
|
|
|
|
{{ formErrors.name }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="label-tags">Tags</label> <span class="little-information">(press enter to add the tag)</span>
|
|
|
|
<tag-input
|
|
|
|
[ngModel]="tags" [validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
|
|
|
|
formControlName="tags" maxItems="5" modelAsStrings="true"
|
|
|
|
></tag-input>
|
2017-12-07 05:15:19 -05:00
|
|
|
</div>
|
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="description">Description</label>
|
|
|
|
<my-video-description formControlName="description"></my-video-description>
|
|
|
|
|
|
|
|
<div *ngIf="formErrors.description" class="form-error">
|
|
|
|
{{ formErrors.description }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
</div>
|
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div class="col-md-4">
|
2017-12-20 08:29:55 -05:00
|
|
|
<div class="form-group">
|
|
|
|
<label>Channel</label>
|
|
|
|
<div class="peertube-select-disabled-container">
|
|
|
|
<select formControlName="channelId">
|
|
|
|
<option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="category">Category</label>
|
2017-12-20 08:29:55 -05:00
|
|
|
<div class="peertube-select-container">
|
|
|
|
<select id="category" formControlName="category">
|
|
|
|
<option></option>
|
|
|
|
<option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div *ngIf="formErrors.category" class="form-error">
|
|
|
|
{{ formErrors.category }}
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
</div>
|
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="licence">Licence</label>
|
2017-12-20 08:29:55 -05:00
|
|
|
<div class="peertube-select-container">
|
|
|
|
<select id="licence" formControlName="licence">
|
|
|
|
<option></option>
|
|
|
|
<option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div *ngIf="formErrors.licence" class="form-error">
|
|
|
|
{{ formErrors.licence }}
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
</div>
|
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="language">Language</label>
|
2017-12-20 08:29:55 -05:00
|
|
|
<div class="peertube-select-container">
|
|
|
|
<select id="language" formControlName="language">
|
|
|
|
<option></option>
|
|
|
|
<option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div *ngIf="formErrors.language" class="form-error">
|
|
|
|
{{ formErrors.language }}
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
</div>
|
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="privacy">Privacy</label>
|
2017-12-20 08:29:55 -05:00
|
|
|
<div class="peertube-select-container">
|
|
|
|
<select id="privacy" formControlName="privacy">
|
|
|
|
<option></option>
|
|
|
|
<option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div *ngIf="formErrors.privacy" class="form-error">
|
|
|
|
{{ formErrors.privacy }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-07 05:15:19 -05:00
|
|
|
|
2017-12-07 08:48:47 -05:00
|
|
|
<div class="form-group form-group-checkbox">
|
|
|
|
<input type="checkbox" id="nsfw" formControlName="nsfw" />
|
2017-12-20 09:25:44 -05:00
|
|
|
<label for="nsfw"></label>
|
2017-12-07 08:48:47 -05:00
|
|
|
<label for="nsfw">This video contains mature or explicit content</label>
|
2017-12-07 05:15:19 -05:00
|
|
|
</div>
|
2017-12-07 08:48:47 -05:00
|
|
|
|
2017-12-07 05:15:19 -05:00
|
|
|
</div>
|
|
|
|
</div>
|