mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 12:59:39 -07:00
Missed these files from the previous commit
This commit is contained in:
parent
f6422cd556
commit
836a5282e0
3 changed files with 11 additions and 5 deletions
|
@ -42,7 +42,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3 offset-md-6 vcenter">
|
<div class="col-md-3 offset-md-6 vcenter">
|
||||||
<button id="continue" mat-raised-button [routerLink]="['/login', 'true']" color="accent" type="submit">{{ 'Common.ContinueButton' | translate }}</button>
|
<button id="continue" mat-raised-button [routerLink]="['/login', 'true']" color="accent" type="submit" data-cy="continue">{{ 'Common.ContinueButton' | translate }}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -50,13 +50,19 @@
|
||||||
(click)="request()"><i class="fas fa-plus"></i>
|
(click)="request()"><i class="fas fa-plus"></i>
|
||||||
{{ 'Common.Request' | translate }}</button>
|
{{ '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]>
|
[disabled]>
|
||||||
<i class="fas fa-check"></i> {{'Common.Available' | translate }}</button>
|
<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]>
|
class="btn-spacing" color="accent" [disabled]>
|
||||||
<i class="fas fa-check"></i> {{'Common.PartiallyAvailable' | translate }}</button>
|
<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()">
|
<button mat-raised-button class="btn-spacing" color="danger" *ngIf="issuesEnabled" (click)="issue()">
|
||||||
<i class="fas fa-exclamation"></i> {{
|
<i class="fas fa-exclamation"></i> {{
|
||||||
'Requests.ReportIssue' | translate }}</button>
|
'Requests.ReportIssue' | translate }}</button>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"IIS Express": {
|
"IIS Express": {
|
||||||
"commandName": "IISExpress",
|
"commandName": "IISExpress",
|
||||||
"commandLineArgs": "--host http://*:3577" ,
|
"commandLineArgs": "--host http://*:3577",
|
||||||
"launchBrowser": true,
|
"launchBrowser": true,
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
},
|
},
|
||||||
"Ombi": {
|
"Ombi": {
|
||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"commandLineArgs": "--host http://localhost:3577 --baseUrl /ombi/",
|
"commandLineArgs": "--host http://localhost:3577",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue