fbc642db9176ed29025da92fbd748243fd4968e0
[oweals/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     ></my-video-edit>
14
15     <div class="submit-container">
16       <div class="submit-button" (click)="update()" [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true }">
17         <my-global-icon iconName="validate" aria-hidden="true"></my-global-icon>
18         <input type="button" i18n-value value="Update" />
19       </div>
20     </div>
21   </form>
22 </div>