]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-update.component.html
Refactor how we use icons
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-update.component.html
CommitLineData
4cc66133 1<div class="margin-content">
b1d40cff 2 <div i18n class="title-page title-page-single">
4cc66133
C
3 Update {{ video?.name }}
4 </div>
1cdb5c0f 5
897ec54d 6 <form novalidate [formGroup]="form">
6e07c3de 7
ff249f49 8 <my-video-edit
bbe0f064 9 [form]="form" [formErrors]="formErrors" [schedulePublicationPossible]="schedulePublicationPossible"
15a7387d 10 [validationMessages]="validationMessages" [videoPrivacies]="videoPrivacies" [userVideoChannels]="userVideoChannels"
14e2014a 11 [videoCaptions]="videoCaptions" [waitTranscodingEnabled]="waitTranscodingEnabled"
ff249f49 12 ></my-video-edit>
dc8bc31b 13
4cc66133 14 <div class="submit-container">
68e24d72 15 <div class="submit-button" (click)="update()" [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true }">
457bb213 16 <my-global-icon iconName="validate"></my-global-icon>
b1d40cff 17 <input type="button" i18n-value value="Update" />
4cc66133 18 </div>
897ec54d
C
19 </div>
20 </form>
897ec54d 21</div>