Awards Pictures

Hi Nabeel !

Back on tracks !!!

And figured out a BUG… For awards, there are pictures holders for admin area but not on front page…

I think the function is not implemented.

Cheers !

*/ Discard post… found the code !!! /*

/core/templates/pilot_public_profile.tpl

For those who would like to change the code, here is my sample :

<strong>Awards</strong>
<?php
if(is_array($allawards))
{			
?>
<div>
<?php foreach($allawards as $award)
{ 
/* To show the image:

<img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" />
*/

?>
<img src="<?php echo $award->image?>" title="<?php echo $award->name?>" alt="<?php echo $award->descrip?>" />  
<?php } ?>
</div>

This gives you the possibility to show awards on single line…

Cheers !