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.
28 lines
422 B
Smarty
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}
|