Changeset 1392
- Timestamp:
- Sep 19, 2010, 8:11:17 PM (10 years ago)
- Location:
- cpc/trunk/project
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpc/trunk/project/apps/frontend/modules/citoyen/templates/indexSuccess.php
r1391 r1392 28 28 <td onclick="document.location='<?php echo url_for('@citoyen?slug='.$citoyen->slug); ?>'"> 29 29 <div class="list_cit"><span class="list_img_left"><a href="<?php echo url_for('@citoyen?slug='.$citoyen->slug); ?>"><?php 30 if (!$citoyen->photo) echo ''.image_tag('xneth/avatar_citoyen.png', array('alt' => 'Avatar par défaut' , 'height' => '50px'));31 else echo '<img src="'.url_for('@photo_citoyen?slug='.$citoyen->slug).'" alt="avatar de '.$citoyen->login.'" height="50px"/>';30 if (!$citoyen->photo) echo ''.image_tag('xneth/avatar_citoyen.png', array('alt' => 'Avatar par défaut')); 31 else echo '<img src="'.url_for('@photo_citoyen?slug='.$citoyen->slug).'" alt="avatar de '.$citoyen->login.'"/>'; 32 32 ?></a></span> 33 33 <span class="list_nom"><a href="<?php echo url_for('@citoyen?slug='.$citoyen->slug); ?>"> 34 34 <?php echo truncate_text($citoyen->login, 26); 35 35 if (!empty($citoyen->activite)) 36 echo '</a><br/><small><i><a href="'.url_for('@citoyen?slug='.$citoyen->slug).'">'.truncate_text(html_entity_decode(strip_tags($citoyen->activite), ENT_NOQUOTES, "UTF-8"), 25).'</a> i</i></small>';36 echo '</a><br/><small><i><a href="'.url_for('@citoyen?slug='.$citoyen->slug).'">'.truncate_text(html_entity_decode(strip_tags($citoyen->activite), ENT_NOQUOTES, "UTF-8"), 25).'</a></i></small>'; 37 37 else echo '</a>';?> 38 38 </span> -
cpc/trunk/project/apps/frontend/modules/documents/templates/showSuccess.php
r1391 r1392 56 56 } ?> 57 57 <h3><a href="<?php echo $doc->source; ?>">Consulter le document complet sur le site de l'Assemblée</a></h3> 58 <p class="aligncenter">(<?php echo link_to('version pdf', preg_replace('/asp$/', 'pdf', $doc->source)); ?>)</p> 58 59 </div> 59 60 </div> -
cpc/trunk/project/web/css/xneth/style.css
r1391 r1392 1684 1684 font-size: 10px; 1685 1685 } 1686 .list_bordertop {1687 border-top: thin solid;1688 }1689 1690 1686 .list_borderleft { 1691 1687 border-left: thin solid; … … 1728 1724 float:left; 1729 1725 margin: 4px; 1726 } 1727 .list_img_left img { 1728 height: 50px; 1730 1729 } 1731 1730 .list_left {
Note: See TracChangeset
for help on using the changeset viewer.