Files
handbrake-cluster-webui/templates/browse/source-details.tpl
Ben Roberts b26367e953 Added a page to display details about a source
Placeholder source detail page which checks that the source is valid and lies below the configured rips.source_dir.
2010-03-21 02:46:31 +00:00

23 lines
331 B
Smarty

<h2>Source details</h2>
{if $source}
<table class="source-details">
<colgroup class="header">
<col />
</colgroup>
<colgroup>
<col />
</colgroup>
<tbody>
<tr>
<th>Source</th>
<td>{$source|escape:"html"}</td>
</tr>
</tbody>
</table>
{else}
<p>
<em>This is not a valid source.</em>
</p>
{/if}