Last change
on this file since 1349 was
1349,
checked in by roux, 11 years ago
|
amélioration présentation page intervention individuelle
|
File size:
1005 bytes
|
Line | |
---|
1 | <h1>Intervention de <?php echo $intervention->getIntervenant()->nom; ?></h1> |
---|
2 | <?php |
---|
3 | $titre2 = $seance->getTitre(0,0,$intervention->getMd5()); |
---|
4 | $titre2 .= ' <br/> '; |
---|
5 | if (isset($orga)) |
---|
6 | $titre2 .= link_to($orga->getNom(), '@list_parlementaires_organisme?slug='.$orga->getSlug()); |
---|
7 | if (isset($secparent)) |
---|
8 | $titre2 .= link_to(ucfirst($secparent->getTitre()), '@section?id='.$section->section_id).' — '; |
---|
9 | if ($section->getTitre()) |
---|
10 | $titre2 .= link_to(ucfirst($section->getTitre()), '@section?id='.$section->id); |
---|
11 | if(count($amdmts) >= 1) |
---|
12 | $titre2 .= ', amendement'; |
---|
13 | if(count($amdmts) > 1) $titre2 .= 's'; |
---|
14 | $titre2 .= ' '; |
---|
15 | foreach($amdmts as $amdmt) |
---|
16 | $titre2 .= link_to($amdmt, '/amendements/'.(implode(',',$lois).'/'.$amdmt)).' '; |
---|
17 | |
---|
18 | ?> |
---|
19 | <h2><?php echo $titre2 ; ?></h2> |
---|
20 | <div class="interventions"> |
---|
21 | <?php echo include_component('intervention', 'parlementaireIntervention', array('intervention' => $intervention, 'complete' => true, 'lois' => $lois, 'amdmts' => $amdmts, 'section'=>$section)); ?> |
---|
22 | </div> |
---|
Note: See
TracBrowser
for help on using the repository browser.