Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/ff29ab915027589ad5e18da33afc93f908ad7ef4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
38 additions and
7 deletions
@ -16,7 +16,7 @@ namespace NzbDrone.Core.Notifications.Smtp
public override string Name
{
get { return " SMTP "; }
get { return " Email "; }
}
public override void OnGrab ( string message )
@ -19,6 +19,7 @@
< link href = "/series/series.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/series/details.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/content/base.css" rel = 'stylesheet' type = 'text/css' / >
< link href = "/settings/notifications/notifications.css" rel = 'stylesheet' type = 'text/css' / >
< / head >
< body >
< div id = "in-sub-nav" >
@ -1 +1,7 @@
{{name}}
< div class = "add-notification-item span3" >
< div class = "row" >
< div class = "span3" >
{{name}}
< / div >
< / div >
< / div >
@ -3,8 +3,8 @@
< h3 > Add Notification< / h3 >
< / div >
< div class = "modal-body" >
< div class = " form-horizontal ">
< div id = "notifications-to-add" class = "btn-group" > < / div >
< div class = " notifications ">
< ul class = "items" > < / ul >
< / div >
< / div >
< div class = "modal-footer" >
@ -8,8 +8,7 @@ define([
NzbDrone . Settings . Notifications . AddItemView = Backbone . Marionette . ItemView . extend ( {
template : 'Settings/Notifications/AddItemTemplate' ,
tagName : 'button' ,
className : 'btn' ,
tagName : 'li' ,
events : {
'click' : 'addNotification'
@ -17,6 +16,7 @@ define([
addNotification : function ( ) {
this . model . set ( 'id' , undefined ) ;
this . model . set ( 'name' , '' ) ;
var view = new NzbDrone . Settings . Notifications . EditView ( { model : this . model } ) ;
NzbDrone . modalRegion . show ( view ) ;
}
@ -24,7 +24,7 @@ define([
NzbDrone . Settings . Notifications . AddView = Backbone . Marionette . CompositeView . extend ( {
itemView : NzbDrone . Settings . Notifications . AddItemView ,
itemViewContainer : ' #notifications-to-add ',
itemViewContainer : ' .notifications .items ',
template : 'Settings/Notifications/AddTemplate'
} ) ;
} ) ;
@ -0,0 +1,24 @@
@import "../../shared/Styles/card.less";
.add-notification-item {
.card;
cursor: pointer;
font-size: 24px;
font-weight: lighter;
text-align: center;
}
.notifications {
text-align: center;
.items {
list-style-type: none;
margin: 0px;
li {
display: inline-block;
vertical-align: top;
}
}
}