]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-edit/video-update.component.html
Merge remote-tracking branch 'weblate/develop' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-update.component.html
1 <div class="margin-content">
2 <div class="title-page title-page-single">
3 <span class="mr-1" i18n>Update</span>
4 <a [routerLink]="[ '/videos/watch', video.uuid ]">{{ video?.name }}</a>
5 </div>
6
7 <form novalidate [formGroup]="form">
8
9 <my-video-edit
10 [form]="form" [formErrors]="formErrors" [schedulePublicationPossible]="schedulePublicationPossible"
11 [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels"
12 [videoCaptions]="videoCaptions" [waitTranscodingEnabled]="waitTranscodingEnabled"
13 type="update" (pluginFieldsAdded)="hydratePluginFieldsFromVideo()"
14 ></my-video-edit>
15
16 <div class="submit-container">
17 <my-button className="orange-button" i18n-label label="Update" icon="circle-tick"
18 (click)="update()" (keydown.enter)="update()"
19 [disabled]="!form.valid || isUpdatingVideo === true"
20 ></my-button>
21 </div>
22 </form>
23 </div>