Files
handbrake-cluster-webui/templates/browse/sources.tpl
Ben Roberts 648968bcb7 Added caching to Sources
Added caching to Sources.
Updated the source browser to mark sources which are still cached
2010-03-21 23:22:29 +00:00

21 lines
725 B
Smarty

<h2>Sources</h2>
{if $sources}
<p>
The list below contains all the DVD sources that are available and ready for ripping.
</p>
<p>
Sources that have recently been scanned are marked <em>(cached)</em> and will load fairly quickly.
Sources that have not been cached will be scanned when the link is clicked, and this may take several minutes so please be patient.
</p>
<ul>
{foreach from=$sources item=source}
<li><a href="{$base_uri}browse/source-details/id/{$source|base64_encode|replace:"/":"-"}" title="View source details">{$source|escape:'html'}</a>{if $sources_cached.$source} (cached){/if}</li>
{/foreach}
</ul>
{else}
<p>
<em>There are currently no DVD sources available to rip.</em>
</p>
{/if}