2014-04-15 22:17:19 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div class="box">
|
|
|
|
<?php
|
2014-04-16 18:24:34 +02:00
|
|
|
echo $this->element('search_navbar',array('SEARCH_education'=>true));
|
2014-04-15 22:17:19 +02:00
|
|
|
$a = $default_Form;
|
2014-04-17 08:59:04 +02:00
|
|
|
$a['inputDefaults']['between'] = false;
|
|
|
|
$a['inputDefaults']['after'] = false;
|
2014-04-16 18:24:34 +02:00
|
|
|
$a['novalidate'] = true;
|
2014-04-15 22:17:19 +02:00
|
|
|
echo $this->Form->create('DreamjobJobOpening',$a);
|
|
|
|
?>
|
2014-04-16 18:24:34 +02:00
|
|
|
<h1><?=__('dreamjob.search.education');?></h1>
|
2014-04-15 22:17:19 +02:00
|
|
|
<?php
|
|
|
|
$a = $default_hForm['inputDefaults'];
|
2014-04-17 08:59:04 +02:00
|
|
|
$a['inputDefaults']['between'] = false;
|
|
|
|
$a['inputDefaults']['after'] = false;
|
2014-04-15 22:17:19 +02:00
|
|
|
echo $this->Form->input('DreamjobJobOpening.title',$a);
|
|
|
|
?>
|
|
|
|
<fieldset class="search">
|
2014-04-22 16:15:30 +02:00
|
|
|
<?=$this->Form->input('DreamjobJobOpening.branch_id',array('label'=>__('dreamjob.branch'),'empty'=>''));?>
|
|
|
|
<?=$this->Form->input('DreamjobJobOpening.city',array('label'=>__('dreamjob.city'),'empty'=>''));?>
|
2014-04-15 22:17:19 +02:00
|
|
|
<div class="form-group submit">
|
|
|
|
<div>
|
|
|
|
<?=$this->Form->submit(__('dreamjob.search'),array('class'=>'btn btn-primary'));?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<?php
|
|
|
|
echo $this->end();
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div class="box">
|
|
|
|
<div class="openinggroup">
|
|
|
|
<?php
|
|
|
|
foreach($openings as $opening){
|
|
|
|
echo $this->element('job_opening_item',array('opening' => $opening));
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|