RSS Git Download  Clone
Raw Blame History
[% META title = 'Admin » Delete Request Error Code' -%]
<!-- BEGIN [% template.name %] -->

	[% # PROCESS dumper.tt dump = c.param('id') %]

    <h3>Confirm you really want to delete this entry:</h3>

	<form method="post" action="[% app_url %]/error/delete/[% c.param('id') %]" />
    <table class="indent">
        <tr>
            <th>Day</th>
            <th>Date</th>
            <th>Time</th>
            <th>UserID</th>
            <th>Code</th>
            <th>Description</th>
            <td class="borderless"></td>
        </tr>
        <tr>
            <td>[% error.time.strftime('%a') %]</td>
            <td>[% error.time.strftime('%d.%b.%Y') %]</td>
            <td>[% error.time.strftime('%T') %]</td>
            <td>[% error.user.username | upper %]</td>
            <td align="center">
                [% error.error_code.code | upper %]
            </td>
            <td>[% error.error_code.description | html %]</td>
            <td>
                <input type="checkbox" name="confirm_delete" value="1">
                <input type='submit' value='Delete' name='.submit' class='button' />                    
            </td>
        </tr>
    </table>
    </form>
    
    <p>[% site.html.back_button %]</p>
<!-- END [% template.name %] -->