mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 10:36:54 -07:00
Finally fixed #72
This commit is contained in:
parent
5352422688
commit
6190eceb60
22 changed files with 320 additions and 94 deletions
|
@ -1,7 +1,6 @@
|
|||
@Html.Partial("_Sidebar")
|
||||
<link rel="stylesheet" type="text/css" href="~/assets/dataTables.bootstrap.css" />
|
||||
|
||||
<script type="text/javascript" src="~/assets/datatables.min.js"></script>
|
||||
@using PlexRequests.UI.Helpers
|
||||
@Html.Partial("_Sidebar")
|
||||
@Html.LoadLogsAssets()
|
||||
|
||||
<div class="col-sm-8 col-sm-push-1">
|
||||
<fieldset>
|
||||
|
|
|
@ -23,6 +23,16 @@
|
|||
</div>
|
||||
</div>
|
||||
<small class="control-label">You will have to restart after changing the port.</small>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="BaseUrl" class="control-label">Base Url</label>
|
||||
|
||||
<div>
|
||||
<input type="text" class="form-control form-control-custom " id="BaseUrl" name="BaseUrl" placeholder="Base Url" value="@Model.BaseUrl">
|
||||
</div>
|
||||
</div>
|
||||
<small class="control-label">You will have to restart after changing the url base.</small>
|
||||
|
||||
<div class="form-group">
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@using Nancy.Security
|
||||
@using PlexRequests.UI.Helpers
|
||||
<div>
|
||||
<h1>Requests</h1>
|
||||
<h4>Below you can see yours and all other requests, as well as their download and approval status.</h4>
|
||||
|
@ -403,6 +404,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<script src="~/assets/requests.js" type="text/javascript"></script>
|
||||
@Html.LoadRequestAssets()
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<div>
|
||||
@using PlexRequests.UI.Helpers
|
||||
<div>
|
||||
<h1>Search</h1>
|
||||
<h4>Want to watch something that is not currently on Plex?! No problem! Just search for it below and request it!</h4>
|
||||
<br />
|
||||
|
@ -209,4 +210,4 @@
|
|||
</script>
|
||||
|
||||
|
||||
<script src="~/assets/search.js" type="text/javascript"></script>
|
||||
@Html.LoadSearchAssets()
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
@using Nancy.Security
|
||||
@using Nancy.Session
|
||||
@using PlexRequests.UI.Helpers
|
||||
@using PlexRequests.UI.Models
|
||||
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase
|
||||
<html>
|
||||
|
@ -7,21 +8,7 @@
|
|||
<title>Plex Requests</title>
|
||||
<!-- Styles -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="~/assets/bootstrap.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="~/assets/custom.min.css" type="text/css" />
|
||||
<link rel="stylesheet" href="~/assets/font-awesome.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="~/assets/pace.min.css" type="text/css"/>
|
||||
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="~/assets/jquery-2.2.1.min.js"></script>
|
||||
<script src="~/assets/handlebars.min.js"></script>
|
||||
<script src="~/assets/bootstrap.min.js"></script>
|
||||
<script src="~/assets/bootstrap-notify.min.js"></script>
|
||||
<script src="~/assets/site.js"></script>
|
||||
<script src="~/assets/pace.min.js"></script>
|
||||
<script src="~/assets/jquery.mixitup.js"></script>
|
||||
<script src="~/assets/moment.min.js"></script>
|
||||
@Html.LoadAssets()
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue