82 lines
2.1 KiB
PHP
82 lines
2.1 KiB
PHP
<?php
|
|
/*
|
|
*
|
|
*/
|
|
$default_hForm['url']=array('controller'=>'user','action'=>'saveCvJson');
|
|
echo $this->Form->create('DreamjobCvCategory',$default_hForm);
|
|
?>
|
|
|
|
<h3><?=__("dreamjob.cv");?><span class="label label-default edit"><span class="glyphicon glyphicon-edit"></span><?=__('dreamjob.edit');?></span><span class="label label-default save"><span class="glyphicon glyphicon-floppy-disk"></span><?=__('dreamjob.save');?></span></h3>
|
|
|
|
<?php
|
|
echo $this->Form->text('test',array('class'=>'form-control'));
|
|
foreach($cv as $cvc){
|
|
?>
|
|
<h4><?=$cvc['DreamjobListCvCategory']['name'];?></h4>
|
|
<table class="cv">
|
|
<?php
|
|
foreach($cvc['DreamjobCvEntry'] as $cve){
|
|
?>
|
|
<tr>
|
|
<?php
|
|
if($cvc['DreamjobListCvCategory']['startdate'] and $cvc['DreamjobListCvCategory']['enddate'] and $cvc['DreamjobListCvCategory']['place']){
|
|
?>
|
|
<td><?=$cve['startdate'];?> - <?=$cve['enddate'];?></td>
|
|
<td><?=$cve['title'];?><br/><span><?=$cve['place'];?></span></td>
|
|
<?php
|
|
}else if($cvc['DreamjobListCvCategory']['place']){
|
|
if($cvc['DreamjobListCvCategory']['startdate']){
|
|
?>
|
|
<td><?=$cve['startdate'];?></td>
|
|
<?php
|
|
}else if($cvc['DreamjobListCvCategory']['enddate']){
|
|
?>
|
|
<td><?=$cve['enddate'];?></td>
|
|
<?php
|
|
}else{
|
|
?>
|
|
<td><?=$cve['title'];?></td>
|
|
<td><?=$cve['place'];?></td>
|
|
<?php
|
|
}
|
|
?>
|
|
<?php
|
|
if($cvc['DreamjobListCvCategory']['startdate'] or $cvc['DreamjobListCvCategory']['enddate']){
|
|
?>
|
|
<td><?=$cve['title'];?><br/><span><?=$cve['place'];?></span></td>
|
|
<?php
|
|
}
|
|
}else{
|
|
if($cvc['DreamjobListCvCategory']['startdate'] and $cvc['DreamjobListCvCategory']['enddate']){
|
|
?>
|
|
<td><?=$cve['startdate'];?> - <?=$cve['enddate'];?></td>
|
|
<?php
|
|
}else if($cvc['DreamjobListCvCategory']['startdate']){
|
|
?>
|
|
<td><?=$cve['startdate'];?></td>
|
|
<?php
|
|
}else if($cvc['DreamjobListCvCategory']['enddate']){
|
|
?>
|
|
<td><?=$cve['enddate'];?></td>
|
|
<?php
|
|
}else{
|
|
?>
|
|
ERROR
|
|
<?php
|
|
}
|
|
?>
|
|
<td><?=$cve['title'];?></td>
|
|
<?php
|
|
}
|
|
?>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
|
|
<?php
|
|
}
|
|
echo $this->Form->end();
|
|
?>
|