mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Fix application url
This commit is contained in:
parent
dd25fb8969
commit
ac82867c69
1 changed files with 28 additions and 30 deletions
|
@ -5,17 +5,17 @@
|
|||
<legend>Customization</legend>
|
||||
|
||||
<div class="col-12">
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Application Name" [(ngModel)]="settings.applicationName">
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Application Name" [(ngModel)]="settings.applicationName">
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Application URL" [(ngModel)]="settings.applicationurl">
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Application URL" [(ngModel)]="settings.applicationUrl">
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Custom Logo" [(ngModel)]="settings.logo">
|
||||
</mat-form-field>
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Custom Logo" [(ngModel)]="settings.logo">
|
||||
</mat-form-field>
|
||||
|
||||
<div *ngIf="settings.logo" class="form-group">
|
||||
<label for="logo" class="control-label">Logo Preview:</label>
|
||||
|
@ -24,38 +24,36 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<mat-checkbox [(ngModel)]="settings.enableCustomDonations" matTooltip="Enable to show a custom donation link in the navigation bar">
|
||||
Enable Custom Donation Link
|
||||
</mat-checkbox>
|
||||
<mat-checkbox [(ngModel)]="settings.enableCustomDonations" matTooltip="Enable to show a custom donation link in the navigation bar">
|
||||
Enable Custom Donation Link
|
||||
</mat-checkbox>
|
||||
|
||||
|
||||
<mat-form-field *ngIf="settings.enableCustomDonations">
|
||||
<input matInput placeholder="Custom Donation URL" [(ngModel)]="settings.customDonationUrl"
|
||||
matTooltip="A link to a Paypal address, or your custom donation url.">
|
||||
</mat-form-field>
|
||||
<mat-form-field *ngIf="settings.enableCustomDonations">
|
||||
<input matInput placeholder="Custom Donation URL" [(ngModel)]="settings.enableCustomDonations"
|
||||
matTooltip="Set a custom message to be displayed in the navigation bar.">
|
||||
</mat-form-field>
|
||||
|
||||
|
||||
<mat-checkbox [(ngModel)]="settings.useCustomPage" matTooltip="Enabled a custom page where you can fully edit. You will need the Edit Custom Page role.">
|
||||
Enable Custom Page
|
||||
</mat-checkbox>
|
||||
|
||||
<mat-form-field *ngIf="settings.enableCustomDonations">
|
||||
<input matInput placeholder="Custom Donation URL" [(ngModel)]="settings.customDonationUrl" matTooltip="A link to a Paypal address, or your custom donation url.">
|
||||
</mat-form-field>
|
||||
<mat-form-field *ngIf="settings.enableCustomDonations">
|
||||
<input matInput placeholder="Custom Donation URL" [(ngModel)]="settings.enableCustomDonations" matTooltip="Set a custom message to be displayed in the navigation bar.">
|
||||
</mat-form-field>
|
||||
|
||||
|
||||
<mat-checkbox [(ngModel)]="settings.useCustomPage" matTooltip="Enabled a custom page where you can fully edit. You will need the Edit Custom Page role.">
|
||||
Enable Custom Page
|
||||
</mat-checkbox>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<button mat-raised-button (click)="save()" type="submit" type="submit" id="save" color="accent">Submit</button>
|
||||
<button mat-raised-button (click)="save()" type="submit" type="submit" id="save" color="accent">Submit</button>
|
||||
</div>
|
||||
<mat-form-field>
|
||||
<textarea matInput [(ngModel)]="settings.customCss" placeholder="Custom CSS"></textarea>
|
||||
</mat-form-field>
|
||||
<textarea matInput [(ngModel)]="settings.customCss" placeholder="Custom CSS"></textarea>
|
||||
</mat-form-field>
|
||||
</div>
|
||||
<!-- <div class="col-7"> -->
|
||||
|
||||
|
||||
<!-- </div> -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue