20 lines
550 B
PHP
20 lines
550 B
PHP
<?php
|
|
/*
|
|
*
|
|
*/
|
|
?>
|
|
<div class="box">
|
|
<h3><?=__('dreamjob.my.application');?></h3>
|
|
<span style="float: right;">
|
|
<?=$this->Html->link('<span class="glyphicon glyphicon-send"></span> '.__('dreamjob.application.extern.to.doing'),array('controller'=>'job','action'=>'applicationSendExtInfo'),array('class'=>'btn btn-default','escape'=>false));?>
|
|
</span>
|
|
|
|
<div class="openinggroup">
|
|
<?php
|
|
foreach($applications as $opening){
|
|
echo $this->element('job_opening_item',array('opening' => $opening,'enableMsg'=>true));
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|