Файл: MobileCMS-2.6.1/modules/chat/views/admin/rooms_edit.tpl
Строк: 14
<?php $this->display('header', array('title' => ($action == 'add'
? 'Создать' : 'Изменить') .' комнату'))
?>
<?php if($error): ?>
<div
class="error">
<?php echo $error
?>
</div>
<?php endif; ?>
<form
action="<?php echo a_url('chat/admin/rooms',
'a=edit&room_id='. @$_GET['room_id']) ?>"
method="post">
<div
class="box">
<h3><?php echo ($action == 'add' ?
'Создать' : 'Изменить') ?>
комнату</h3>
<div
class="inside">
<p>
<label>Название</label>
<input
name="name" type="text" value="<?php echo
@$room['name'] ?>">
</p>
</div>
</div>
<p><input
type="submit" name="submit" value="<?php echo
($action == 'add' ? 'Создать' : 'Изменить')
?>"></p>
</form>
<?php
$this->display('footer') ?>