]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/video-update.component.html
switch from softies to feathericons
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-update.component.html
CommitLineData
4cc66133 1<div class="margin-content">
2ba5ac33
RK
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>
4cc66133 5 </div>
1cdb5c0f 6
897ec54d 7 <form novalidate [formGroup]="form">
6e07c3de 8
ff249f49 9 <my-video-edit
bbe0f064 10 [form]="form" [formErrors]="formErrors" [schedulePublicationPossible]="schedulePublicationPossible"
851f5daa 11 [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels"
14e2014a 12 [videoCaptions]="videoCaptions" [waitTranscodingEnabled]="waitTranscodingEnabled"
ff249f49 13 ></my-video-edit>
dc8bc31b 14
4cc66133 15 <div class="submit-container">
68e24d72 16 <div class="submit-button" (click)="update()" [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true }">
c41c0e28 17 <my-global-icon iconName="circle-tick" aria-hidden="true"></my-global-icon>
b1d40cff 18 <input type="button" i18n-value value="Update" />
4cc66133 19 </div>
897ec54d
C
20 </div>
21 </form>
897ec54d 22</div>