<?php include_once('{SPIDER_PATH}'); ?>
{charset:UTF-8}
{template:admin.tpl}
{model:spider.model.Language}
{model:{MODEL_NAME}::load}

	<h1>{TABLE_NAME} Confirm</h1>
	{if:request->isError()}
	<div>
	<ul class="error">
		{foreach:request->getErrors() as key => msg}
		<li style="overflow: auto">
		{write:msg}
		</li>
		{/foreach}
	</ul>
	</div>
	<p>
		<input type="button" value="Back" onclick="history.back()" />
	</p>
	{else}
	
	<table class="detail">
	<tbody>
	{CONFIRM_ITEMS}
	</tbody>
	</table>
	<p>
		<input type="button" value="Back" onclick="history.back()" />
		<input type="button" value="Back to the list" onclick="location.href='./'" />
	</p>
	{/if}
	