28 lines
1.1 KiB
Smarty
28 lines
1.1 KiB
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}
|
|
{assign var='source_plugin' value=$source->plugin()}
|
|
{assign var='source_filename' value=$source->filename()}
|
|
{assign var='source_filename_encoded' value=$source->filenameEncoded()}
|
|
<li>
|
|
[ <a href="{$base_uri}rips/source-details/plugin/{$source_plugin}/id/{$source_filename_encoded}" title="Browse source details">Browse</a> |
|
|
<a href="{$base_uri}rips/setup-rip/plugin/{$source_plugin}/id/{$source_filename_encoded}" title="Rip this source">Rip</a> ]
|
|
{$source_filename|escape:'html'}{if $sources_cached.$source_filename} (cached){/if}
|
|
</li>
|
|
{/foreach}
|
|
</ul>
|
|
{else}
|
|
<p>
|
|
<em>There are currently no DVD sources available to rip.</em>
|
|
</p>
|
|
{/if}
|