Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/1ee2ae82105a59b8b6c2900c664322b6432eedd2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
10 deletions
@ -20,8 +20,5 @@ namespace NzbDrone.Core.Repository
public DateTime LastExecution { get ; set ; }
public Boolean Success { get ; set ; }
[Ignore]
public string Command { get ; set ; }
}
}
@ -37,11 +37,6 @@ namespace NzbDrone.Web.Controllers
} ) ;
var jobs = _jobProvider . All ( ) ;
foreach ( var jobDefinition in jobs )
{
jobDefinition . Command = "<a href=\"http://www.google.ca\"></a>" ;
}
return View ( jobs ) ;
}
@ -11,8 +11,9 @@
.Columns(c => c.Bound(g => g.Interval))
.Columns(c => c.Bound(g => g.LastExecution))
.Columns(c => c.Bound(g => g.Success))
.Columns(c => c.Bound(g => g.Command)
.Template(@<text> @{ if(item.Enable)
.Columns(c => c.Bound(g => g.Id)
.Title("Command")
.Template(@<text> @{ if(item.Enable)
{
@Ajax.ImageActionLink("../../Content/Images/Gear.png", new { Alt = "Run", Width = 18, Height = 18, Title = "Run Job" }, "RunJob", new { TypeName = item.TypeName }, null, null)
}