Placeholder source detail page which checks that the source is valid and lies below the configured rips.source_dir.
23 lines
331 B
Smarty
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} |