Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/View/Activities/ |
Upload File : |
<?php echo $this->element('filter-start'); echo $this->Form->create('Activity', array( 'type' => 'get', 'class' => 'form-horizontal' )); ?> <div class="form-group"> <?php echo $this->Form->label('name', __('หัวข้อกิจกรรม'), array( 'class' => 'col-md-2 text-right filter-label' )); echo $this->Form->input('code', array( 'options' => array(), 'label' => false, 'class' => 'form-control', 'div' => 'col-md-3', 'empty' => __('หัวข้อกิจกรรม'), )); echo $this->Form->label('location', __('สถานที่จัด'), array( 'class' => 'col-md-2 text-right filter-label' )); echo $this->Form->input('location', array( 'options' => array(), 'label' => false, 'class' => 'form-control', 'div' => 'col-md-3', 'empty' => __('สถานที่จัด'), )); ?> </div><!-- .form-group --> <div class="form-group"> <?php echo $this->Form->label('start_date', __('วันที่จัดกิจกรรม'), array( 'class' => 'col-md-2 text-right filter-label' )); echo $this->Form->input('start_date', array( 'before' => '<span class="input-group-addon glyphicon glyphicon-calendar"></span>', 'type' => 'text', 'label' => false, 'class' => 'form-control datepicker', 'div' => 'col-md-3 input-group' )); echo $this->Form->label('topic_id', __('ประเภทสิทธิหลัก'), array( 'class' => 'col-md-2 text-right filter-label' )); echo $this->Form->input('topic_id', array( 'options' => $topics, 'label' => false, 'class' => 'form-control select-topic-id', 'div' => 'col-md-3', 'empty' => __('ทุกประเภทสิทธิ'), 'rel' => 'topics' )); ?> </div><!-- .form-group --> <div class="form-group"> <?php echo $this->Form->label('subtopic_id', __('ประเภทสิทธิย่อย'), array( 'class' => 'col-md-2 col-md-offset-5 text-right filter-label' )); echo $this->Form->input('subtopic_id', array( 'options' => array(), 'label' => false, 'class' => 'form-control', 'div' => 'col-md-3', 'empty' => __('ทุกประเภทสิทธิ'), 'disabled' => true, 'rel' => 'topics' )); ?> <div class="col-md-1 text-right"> <?php echo $this->Form->submit(__('ค้นหา'), array( 'class' => 'btn btn-primary' )); ?> </div><!-- .col-md-2 --> </div><!-- .form-group --> <?php echo $this->Form->end(); ?> <?php echo $this->element('filter-end'); ?> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="frontend-content"> <div class="page-header"> <h2 class="frontend-content-title text-center"> <?php echo __('ข้อมูลสมาชิกเครือข่ายที่เข้าร่วมกิจกรรม'); ?> </h2> </div><!-- .page-header --> <div class="row"> <div class="col-md-6 col-md-offset-3"> <table class="table table-striped"> <thead> <tr> <th><?php echo __('ลำดับ') ?></th> <th><?php echo __('เครือข่ายที่ร่วม'); ?></th> <th><?php echo __('ประเภทองค์กร'); ?></th> </tr> </thead> <tbody> <?php for ( $i = 0; $i < 10; $i++ ) : ?> <tr> <td><?php echo $i+1; ?></td> <td>สถาบันวิจัยพลังงาน</td> <td>หน่วยงานอิสระ</td> </tr> <?php endfor; ?> </tbody> </table> </div> </div> <?php echo $this->element('pagination'); ?> </div><!-- .frontend-content --> </div><!-- .col-md-12 --> </div><!-- .row --> </div><!-- .container -->