HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
_search.php
Go to the documentation of this file.
1 <?php
2 /* @var $this AccountTypesController */
3 /* @var $model AccountTypes */
4 /* @var $form CActiveForm */
5 ?>
6 
7 <div class="wide form">
8 
9 <?php $form = $this->beginWidget('CActiveForm', array(
10  'action' => Yii::app()->createUrl($this->route),
11  'method' => 'get',
12 )); ?>
13 
14  <div class="row">
15  <?php echo $form->label($model, 'Id'); ?>
16  <?php echo $form->textField($model, 'Id', array('size' => 20, 'maxlength' => 20)); ?>
17  </div>
18 
19  <div class="row">
20  <?php echo $form->label($model, 'Type'); ?>
21  <?php echo $form->textField($model, 'Type', array('size' => 60, 'maxlength' => 150)); ?>
22  </div>
23 
24  <div class="row buttons">
25  <?php echo CHtml::submitButton('Search'); ?>
26  </div>
27 
28 <?php $this->endWidget(); ?>
29 
30 </div><!-- search-form -->