Files
handbrake-cluster-webui/templates/browse/source-details.tpl
Ben Roberts ed3ef8c01d Fixed call to handbrake, and printout of response
Added an ignore on 'lost+found' directories in the Source Lister, since
by default only root has access to this dir, which was causing
permission denied errors.
2010-03-21 03:43:47 +00:00

28 lines
422 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_path|escape:"html"}</td>
</tr>
<tr>
<th>Output</th>
<td><pre>{$output|escape:"html"}</pre></td>
</tr>
</tbody>
</table>
{else}
<p>
<em>This is not a valid source.</em>
</p>
{/if}