|
|
|
@ -50,13 +50,19 @@
|
|
|
|
|
(click)="request()"><i class="fas fa-plus"></i>
|
|
|
|
|
{{ 'Common.Request' | translate }}</button>
|
|
|
|
|
|
|
|
|
|
<button *ngIf="tv.fullyAvailable" mat-raised-button class="btn-spacing" color="accent"
|
|
|
|
|
<button *ngIf="tv.fullyAvailable && !tv.partlyAvailable" mat-raised-button class="btn-spacing" color="accent"
|
|
|
|
|
[disabled]>
|
|
|
|
|
<i class="fas fa-check"></i> {{'Common.Available' | translate }}</button>
|
|
|
|
|
<button *ngIf="tv.partlyAvailable && !tv.fullyAvailable" mat-raised-button
|
|
|
|
|
<button *ngIf="tv.partlyAvailable && !tv.fullyAvailable" mat-raised-button
|
|
|
|
|
class="btn-spacing" color="accent" [disabled]>
|
|
|
|
|
<i class="fas fa-check"></i> {{'Common.PartiallyAvailable' | translate }}</button>
|
|
|
|
|
|
|
|
|
|
<!-- There are unaired episodes-->
|
|
|
|
|
<button *ngIf="tv.partlyAvailable && tv.fullyAvailable" mat-raised-button
|
|
|
|
|
class="btn-spacing" color="accent" [disabled]>
|
|
|
|
|
<i class="fas fa-check"></i> {{'Common.PartiallyAvailable' | translate }}</button>
|
|
|
|
|
<!-- end unaired episodes-->
|
|
|
|
|
|
|
|
|
|
<button mat-raised-button class="btn-spacing" color="danger" *ngIf="issuesEnabled" (click)="issue()">
|
|
|
|
|
<i class="fas fa-exclamation"></i> {{
|
|
|
|
|
'Requests.ReportIssue' | translate }}</button>
|
|
|
|
|