mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 04:49:33 -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>
|
<legend>Customization</legend>
|
||||||
|
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<mat-form-field>
|
<mat-form-field>
|
||||||
<input matInput placeholder="Application Name" [(ngModel)]="settings.applicationName">
|
<input matInput placeholder="Application Name" [(ngModel)]="settings.applicationName">
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<mat-form-field>
|
<mat-form-field>
|
||||||
<input matInput placeholder="Application URL" [(ngModel)]="settings.applicationurl">
|
<input matInput placeholder="Application URL" [(ngModel)]="settings.applicationUrl">
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<mat-form-field>
|
<mat-form-field>
|
||||||
<input matInput placeholder="Custom Logo" [(ngModel)]="settings.logo">
|
<input matInput placeholder="Custom Logo" [(ngModel)]="settings.logo">
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<div *ngIf="settings.logo" class="form-group">
|
<div *ngIf="settings.logo" class="form-group">
|
||||||
<label for="logo" class="control-label">Logo Preview:</label>
|
<label for="logo" class="control-label">Logo Preview:</label>
|
||||||
|
@ -24,38 +24,36 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<mat-checkbox [(ngModel)]="settings.enableCustomDonations" matTooltip="Enable to show a custom donation link in the navigation bar">
|
<mat-checkbox [(ngModel)]="settings.enableCustomDonations" matTooltip="Enable to show a custom donation link in the navigation bar">
|
||||||
Enable Custom Donation Link
|
Enable Custom Donation Link
|
||||||
</mat-checkbox>
|
</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-form-field *ngIf="settings.enableCustomDonations">
|
||||||
<mat-checkbox [(ngModel)]="settings.useCustomPage" matTooltip="Enabled a custom page where you can fully edit. You will need the Edit Custom Page role.">
|
<input matInput placeholder="Custom Donation URL" [(ngModel)]="settings.customDonationUrl" matTooltip="A link to a Paypal address, or your custom donation url.">
|
||||||
Enable Custom Page
|
</mat-form-field>
|
||||||
</mat-checkbox>
|
<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">
|
<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>
|
</div>
|
||||||
<mat-form-field>
|
<mat-form-field>
|
||||||
<textarea matInput [(ngModel)]="settings.customCss" placeholder="Custom CSS"></textarea>
|
<textarea matInput [(ngModel)]="settings.customCss" placeholder="Custom CSS"></textarea>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="col-7"> -->
|
<!-- <div class="col-7"> -->
|
||||||
|
|
||||||
|
|
||||||
<!-- </div> -->
|
<!-- </div> -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue