{**
* XS2:
*
* This file is developed by Solutecs, LLC for the purpose of the company
* and is provided together with XS2 Framework as and inherent part of the
* system. This file can be used on the terms of License Agreement.
*
* +7 (495) 585-0833 / 13 Rusakovskaya street, Moscow 107140 Russia
*
* @link http://www.solutecs.com
* @copyright ©1998-2007 Solutecs, LLC
* @version 1.XX
*}
{xs2Fetch mod="users" obj="user" met="login"} {* Форма авторизации пользователя *}
{xs2Fetch mod="blog" met="blogmenu"} {* Меню авторизованного пользователя *}
{* Вывод формы удаления записи *}
{if $myBlog.NodId>0}
<p>
<a href="{xs2Href mod="blog" obj="blog" met="show" atr=$blog.NodId}">{$blog.NName}</a><br/>
<a href="{xs2Href mod="blog" obj="message" met="comments" atr=$message.NodId}"><b>
{if $message.NName}
{$message.NName}</b></a>, {$message.CDate}
{else}
{$message.CDate}</b></a>
{/if}
</p>
<p>Вы подтверждаете удаление этой записи?</p>
<form name="deleteForm" method="POST" action="{$_THE.REQUEST_URI}">
<input name="action" value="deleteMessage" type="hidden"/>
<input type="submit" value="Да"/>
</form>
{else}
Вы не можете удалять сообщения, если Вы не авторизованный пользователь.
{/if}
{* /Вывод формы удаления записи *}
|
|