1
0
Fork 0
peertube/client/src/app/videos/+video-edit/video-update.component.html

22 lines
818 B
HTML
Raw Normal View History

2017-12-07 08:48:47 -05:00
<div class="margin-content">
2018-06-04 10:21:17 -04:00
<div i18n class="title-page title-page-single">
2017-12-07 08:48:47 -05:00
Update {{ video?.name }}
</div>
2016-06-04 14:37:38 -04:00
2017-04-21 12:26:09 -04:00
<form novalidate [formGroup]="form">
2017-03-22 16:15:55 -04:00
2017-12-07 05:15:19 -05:00
<my-video-edit
[form]="form" [formErrors]="formErrors" [schedulePublicationPossible]="schedulePublicationPossible"
2017-12-20 08:29:55 -05:00
[validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies" [userVideoChannels]="userVideoChannels"
2018-12-11 08:52:50 -05:00
[videoCaptions]="videoCaptions" [waitTranscodingEnabled]="waitTranscodingEnabled"
2017-12-07 05:15:19 -05:00
></my-video-edit>
2016-03-14 08:50:19 -04:00
2017-12-07 08:48:47 -05:00
<div class="submit-container">
2018-02-16 11:24:47 -05:00
<div class="submit-button" (click)="update()" [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true }">
2017-12-07 08:48:47 -05:00
<span class="icon icon-validate"></span>
2018-06-04 10:21:17 -04:00
<input type="button" i18n-value value="Update" />
2017-12-07 08:48:47 -05:00
</div>
2017-04-21 12:26:09 -04:00
</div>
</form>
</div>