Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/85736029c837227946e094d0c8b954df3f37e482/NzbDrone.Web/Views/System/Config.cshtml You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Web/Views/System/Config.cshtml

32 lines
1017 B

@model IEnumerable<NzbDrone.Core.Repository.Config>
@section TitleContent{
Configuration
}
@(Html.Telerik().Grid<NzbDrone.Core.Repository.Config>()
.Name("Grid")
.TableHtmlAttributes(new { @class = "Grid" })
.DataKeys(keys =>
{
keys.Add(p => p.Key);
})
.ToolBar(commands => commands.Insert().ButtonType(GridButtonType.Image))
.DataBinding(dataBinding =>
{
dataBinding.Ajax()
.Select("_SelectAjaxEditing", "System")
.Insert("_InsertAjaxEditing", "System")
.Update("_SaveAjaxEditing", "System");
})
.Columns(columns =>
{
columns.Bound(p => p.Key);
columns.Bound(p => p.Value);
columns.Command(commands =>
{
commands.Edit().ButtonType(GridButtonType.Image);
}).Width(90).Title("Actions");
})
.Editable(editing => editing.Mode(GridEditMode.InLine))
.Sortable()
)