Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/64181ebdffda9fc64f7864fe0467832afbec7115/UI/Shared/Grid/PagerTemplate.html You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/UI/Shared/Grid/PagerTemplate.html

15 lines
445 B

<ul>
{{#each handles}}
<li {{#if className}}class="{{className}}"{{/if}} >
{{#if pageNumber}}
<span>{{pageNumber}} / {{lastPage}}</span>
{{else}}
<i class="pager-btn clickable {{label}}" data-action="{{action}}"/>
{{/if}}
</li>
{{/each}}
</ul>
<span class="total-records">
Total Records: {{Number state.totalRecords}}
</span>