Sonarr/src/UI/History/Details/HistoryDetailsViewTemplate....

59 lines
1.7 KiB
HTML
Raw Normal View History

2013-08-26 05:31:58 +00:00
<div class="history-detail-modal">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h3>
Details
</h3>
</div>
<div class="modal-body">
{{#if_eq eventType compare="grabbed"}}
<dl class="dl-horizontal">
<dt>Name</dt>
<dd>{{sourceTitle}}</dd>
{{#with data}}
{{#if indexer}}
<dt>Indexer</dt>
<dd>{{indexer}}</dd>
{{/if}}
{{#if releaseGroup}}
<dt>Release Group</dt>
<dd>{{releaseGroup}}</dd>
{{/if}}
{{#if nzbInfoUrl}}
<dt>Info</dt>
2013-09-13 23:17:58 +00:00
<dd><a href="{{infoUrl}}">{{infoUrl}}o</a></dd>
2013-08-26 05:31:58 +00:00
{{/if}}
{{/with}}
</dl>
{{else}}
{{#if data}}
{{#with data}}
<dl class="dl-horizontal">
2013-08-30 06:38:55 +00:00
{{#if droppedPath}}
<dt>Source:</dt>
<dd>{{droppedPath}}</dd>
2013-08-26 05:31:58 +00:00
{{/if}}
2013-08-30 06:38:55 +00:00
{{#if importedPath}}
<dt>Imported To:</dt>
<dd>{{importedPath}}</dd>
2013-08-26 05:31:58 +00:00
{{/if}}
</dl>
{{/with}}
{{else}}
No details available
{{/if}}
{{/if_eq}}
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal">close</button>
</div>
</div>