aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/modals/video-blacklist.component.html
blob: 1a87bdcd4235d2f0b06f858e5178ad45ad53b3be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<ng-template #modal>
  <div class="modal-header">
    <h4 i18n class="modal-title">Blacklist video</h4>
    <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
  </div>

  <div class="modal-body">

    <form novalidate [formGroup]="form" (ngSubmit)="blacklist()">
      <div class="form-group">
        <textarea i18n-placeholder placeholder="Reason..." formControlName="reason" [ngClass]="{ 'input-error': formErrors['reason'] }">
        </textarea>
        <div *ngIf="formErrors.reason" class="form-error">
          {{ formErrors.reason }}
        </div>
      </div>

      <div class="form-group" *ngIf="video.isLocal">
        <my-peertube-checkbox
          inputName="unfederate" formControlName="unfederate"
          i18n-labelText labelText="Unfederate the video (ask for its deletion from the remote instances)"
        ></my-peertube-checkbox>
      </div>

      <div class="form-group inputs">
        <span i18n class="action-button action-button-cancel" (click)="hide()">
          Cancel
        </span>

        <input
          type="submit" i18n-value value="Submit" class="action-button-submit"
          [disabled]="!form.valid"
        >
      </div>
    </form>

  </div>
</ng-template>