2012-03-15 11:12:07 +00:00
|
|
|
<?php if ( count($this->nouveautes)>0 ) {?>
|
2012-03-14 08:23:19 +00:00
|
|
|
<div style="position:absolute;width:680px;top:5px;" class="ui-state-highlight ui-corner-all">
|
|
|
|
<p>
|
|
|
|
<span style="float:left;margin-right:0.3em;" class="ui-icon ui-icon-info"></span>
|
|
|
|
<strong>Nouveau !</strong>
|
2012-03-15 11:12:07 +00:00
|
|
|
<?php $cpt = 0;?>
|
|
|
|
<?php foreach ( $this->nouveautes as $nouveaute) {?>
|
2012-03-28 12:56:03 +00:00
|
|
|
<a href="<?=$this->url(array('controller'=>'fichier', 'action'=>'new', 'fichier'=>$nouveaute->fichier))?>" target="_blank">
|
|
|
|
<?=$nouveaute->intitule?></a>
|
2012-03-15 11:12:07 +00:00
|
|
|
<?php $cpt++;?>
|
2012-04-04 12:41:45 +00:00
|
|
|
<?php if ( $cpt < count($this->nouveautes) ) {?>,<?php }?>
|
2012-03-15 11:12:07 +00:00
|
|
|
<?php }?>
|
2012-03-14 08:23:19 +00:00
|
|
|
<br/>
|
2012-03-15 11:12:07 +00:00
|
|
|
<span style="font-size:10px;">Cliquez sur les intitulés pour consulter le document,
|
|
|
|
ou <a href="<?=$this->url(array('controller'=>'aide', 'action'=>'newliste'))?>">ici</a> pour retrouver la liste des modifications</span>
|
2012-03-14 08:23:19 +00:00
|
|
|
</p>
|
2012-03-15 11:12:07 +00:00
|
|
|
</div>
|
|
|
|
<?php }?>
|