Show
Ignore:
Timestamp:
07/03/08 16:19:22 (5 months ago)
Author:
aarkerio
Message:

Update

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/users/directory.ctp

    r613 r623  
    1  
    2 <div style="padding:7px;color:gray;font-size:14pt;border-bottom:1px solid orange;margin-bottom:12px;font-weight:bold;">Teachers</div> 
     1<?php echo $html->div(null, __('Directory', true)); ?> 
    32 
    43<table style="margin: 0 auto;border:1px dotted gray;width:100%;"> 
    54 
    65<tr style="padding:7px;color:green;font-size:9pt;border:1px dotted gray;text-align:center;">  
    7    <td>Name</td>  
     6   <td><?php <__('Name');?></td>  
    87   <td>Message</td>  
    98   <td>eduBlog</td>  
     
    1312<?php  
    1413foreach ($users as $val): 
    15   echo '<tr> <td>'. $val['User']['username'] .'</td> <td>'.$html->link(__('Write message',true), '/messages/compose').'</td>'; 
     14  echo '<tr><td>'. $val['User']['username'] .'</td> <td>'.$html->link(__('Write message',true), '/messages/compose').'</td>'; 
    1615  echo '<td>'.$html->link($val['User']['name'], '/users/blog/'.$val['User']['username']) .'</td> <td>'. $val['User']['last_visit'] .'</td></tr>'; 
    1716endforeach;