Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/2ce5f6d416262bbedd1bd5d6547a587e30d12691/UI/Settings/Notifications/ItemTemplate.html You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Settings/Notifications/ItemTemplate.html

24 lines
699 B

<div class="notification-item">
<div>
<h3>{{name}}</h3>
<span class="btn-group pull-right">
<button class="btn btn-mini x-edit"><i class="icon-nd-edit"/></button>
<button class="btn btn-mini x-delete"><i class="icon-nd-delete"/></button>
</span>
</div>
<div class="settings">
{{#if onGrab}}
<span class="label label-success">On Grab</span>
{{else}}
<span class="label">On Grab</span>
{{/if}}
{{#if onDownload}}
<span class="label label-success">On Download</span>
{{else}}
<span class="label">On Download</span>
{{/if}}
</div>
</div>