mirror of https://github.com/Sonarr/Sonarr
Added message to download failed history events
Fixed: NZB info url on history details
This commit is contained in:
parent
d634dd1e5c
commit
4578adf1c0
|
@ -3,7 +3,9 @@
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||||
|
|
||||||
<h3>
|
<h3>
|
||||||
Details
|
{{#if_eq eventType compare="grabbed"}}Grabbed{{/if_eq}}
|
||||||
|
{{#if_eq eventType compare="downloadFailed"}}Download Failed{{/if_eq}}
|
||||||
|
{{#if_eq eventType compare="downloadFolderImported"}}Episode Imported{{/if_eq}}
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -27,11 +29,20 @@
|
||||||
|
|
||||||
{{#if nzbInfoUrl}}
|
{{#if nzbInfoUrl}}
|
||||||
<dt>Info</dt>
|
<dt>Info</dt>
|
||||||
<dd><a href="{{infoUrl}}">{{infoUrl}}o</a></dd>
|
<dd><a href="{{nzbInfoUrl}}">{{nzbInfoUrl}}</a></dd>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/with}}
|
{{/with}}
|
||||||
</dl>
|
</dl>
|
||||||
{{else}}
|
{{/if_eq}}
|
||||||
|
{{#if_eq eventType compare="downloadFailed"}}
|
||||||
|
<dl class="dl-horizontal">
|
||||||
|
{{#with data}}
|
||||||
|
<dt>Message</dt>
|
||||||
|
<dd>{{message}}</dd>
|
||||||
|
{{/with}}
|
||||||
|
</dl>
|
||||||
|
{{/if_eq}}
|
||||||
|
{{#if_eq eventType compare="downloadFolderImported"}}
|
||||||
{{#if data}}
|
{{#if data}}
|
||||||
{{#with data}}
|
{{#with data}}
|
||||||
<dl class="dl-horizontal">
|
<dl class="dl-horizontal">
|
||||||
|
|
Loading…
Reference in New Issue