suche
This commit is contained in:
parent
27969b0d8e
commit
6f9c37ab3a
|
@ -0,0 +1,40 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
<div class="box">
|
||||||
|
<?php
|
||||||
|
$a = $default_Form;
|
||||||
|
$a['inputDefaults']['between'] = false;
|
||||||
|
$a['inputDefaults']['after'] = false;
|
||||||
|
$a['novalidate'] = true;
|
||||||
|
echo $this->Form->create('DreamjobWorker',$a);
|
||||||
|
?>
|
||||||
|
<h1><?=__('dreamjob.search.worker');?></h1>
|
||||||
|
<?php
|
||||||
|
$a = $default_hForm['inputDefaults'];
|
||||||
|
$a['between'] = false;
|
||||||
|
$a['after'] = false;
|
||||||
|
echo $this->Form->input('DreamjobWorker.name',$a);
|
||||||
|
?>
|
||||||
|
<fieldset class="search">
|
||||||
|
<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($workers as $worker){
|
||||||
|
echo $this->element('user_worker_item',array('profil' => $worker));
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
Reference in New Issue