2014-02-23 11:12:08 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div class="box">
|
|
|
|
<?php
|
|
|
|
echo $this->Form->create('DreamjobJobOpening',$default_Form);
|
|
|
|
?>
|
|
|
|
<fieldset>
|
|
|
|
<legend>
|
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
<c:choose>
|
|
|
|
<c:when test="${empty opening.id}">
|
|
|
|
<spring:message code="dreamjob.opening"/>
|
|
|
|
</c:when>
|
|
|
|
<c:otherwise>
|
|
|
|
<c:out value="${opening.title}"/>
|
|
|
|
</c:otherwise>
|
|
|
|
</c:choose>
|
|
|
|
*/
|
2014-03-01 11:17:23 +01:00
|
|
|
echo $this->Form->hidden("DreamjobJobOpening.company_id");
|
|
|
|
if(!empty($this->request->data['DreamjobJobOpening']))
|
|
|
|
echo $this->request->data['DreamjobJobOpening']['title'];
|
|
|
|
else
|
|
|
|
echo __("dreamjob.opening.addForm");
|
2014-02-23 11:12:08 +01:00
|
|
|
?>
|
|
|
|
</legend>
|
2014-04-28 12:53:13 +02:00
|
|
|
<?php echo $this->Form->input('DreamjobJobOpening.title',array('placeholder'=>__('dreamjob.opening.title.placeholder'),'label'=>array('text'=>__("dreamjob.title"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
2014-04-23 22:27:03 +02:00
|
|
|
echo $this->Form->input('DreamjobJobOpening.startdate',array('label'=>array('text'=>__("dreamjob.opening.startdate"),"class"=>$default_Form['inputDefaults']['label']['class']),"style"=>'width:20%;display:inline-block;','dateFormat' => 'DMY','minYear' => date('Y') - 10, 'maxYear' => date('Y')+10));
|
|
|
|
echo $this->Form->input('DreamjobJobOpening.enddate',array('label'=>array('text'=>__("dreamjob.opening.enddate"),"class"=>$default_Form['inputDefaults']['label']['class']),"style"=>'width:20%;display:inline-block;','dateFormat' => 'DMY','minYear' => date('Y') - 10, 'maxYear' => date('Y')+10));
|
2014-03-01 11:17:23 +01:00
|
|
|
echo $this->Form->input('DreamjobJobOpening.kindofjob_id',array('label'=>array('text'=>__("dreamjob.kindofjob"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
|
|
|
echo $this->Form->input('DreamjobJobOpening.graducation_id',array('label'=>array('text'=>__("dreamjob.graducation"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
2014-03-28 16:22:19 +01:00
|
|
|
echo $this->Form->input('DreamjobJobOpening.branch_id',array('label'=>array('text'=>__("dreamjob.branch"),"class"=>$default_Form['inputDefaults']['label']['class']))); ?>
|
2014-03-01 11:17:23 +01:00
|
|
|
<div class="form-group">
|
2014-03-16 12:20:20 +01:00
|
|
|
<label class="col-sm-3 control-label"><?=__("dreamjob.opening.active");?></label>
|
2014-03-16 12:22:29 +01:00
|
|
|
<div class="col-sm-9" style="text-align:left;">
|
2014-03-01 11:17:23 +01:00
|
|
|
<?=$this->Form->checkbox('DreamjobJobOpening.active',array("class"=>'form-control',"label"=>__("dreamjob.opening.active")))?>
|
2014-03-05 22:01:30 +01:00
|
|
|
</div>
|
2014-03-01 11:17:23 +01:00
|
|
|
</div>
|
|
|
|
<legend><?=__("dreamjob.address");?></legend>
|
2014-04-28 12:53:13 +02:00
|
|
|
<?php echo $this->Form->input('DreamjobJobOpening.street',array('placeholder'=>__('dreamjob.street.placeholder'),'label'=>array('text'=>__("dreamjob.street"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
|
|
|
echo $this->Form->input('DreamjobJobOpening.postcode',array('placeholder'=>__('dreamjob.postcode.placeholder'),'label'=>array('text'=>__("dreamjob.postcode"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
2014-04-22 16:01:00 +02:00
|
|
|
echo $this->Form->input('DreamjobJobOpening.city_id',array("label" => array('text'=>__("dreamjob.city"),"class"=>$default_Form['inputDefaults']['label']['class']))); ?>
|
2014-03-01 11:17:23 +01:00
|
|
|
<legend><?=__("dreamjob.text");?></legend>
|
2014-05-06 16:44:34 +02:00
|
|
|
<div><?php echo $this->Form->textarea('DreamjobJobOpening.text',array("class"=>'form-control',"rows"=>10)); ?></div>
|
2014-03-05 22:01:30 +01:00
|
|
|
<div class="buttonrow">
|
2014-03-26 09:15:43 +01:00
|
|
|
<?=$this->Form->button(__('dreamjob.save'),array('div' => false,'class'=>"btn btn-primary",'type' => 'submit'));?>
|
2014-03-01 11:17:23 +01:00
|
|
|
</div>
|
2014-02-23 11:12:08 +01:00
|
|
|
</fieldset>
|
|
|
|
<?php echo $this->Form->end(); ?>
|
|
|
|
</div>
|