Changeset 613

Show
Ignore:
Timestamp:
06/30/08 16:52:19 (3 months ago)
Author:
aarkerio
Message:

Liitle fixes

Location:
trunk/app/views
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/catfaqs/admin_listing.ctp

    r541 r613  
    88echo $html->getCrumbs(' / ');  
    99 
    10 echo $ajax->div('loading', array('style'=>'display:none')); 
    11                  echo $html->image("static/loading.gif", array("alt"=>"Loading")); 
    12 echo $ajax->divEnd('loading'); 
     10echo $html->div('title_section', __('FAQ categories', true)); 
     11 
     12echo $ajax->div('loading', array('style'=>'display:none')). $html->image("static/loading.gif", array("alt"=>"Loading")).$ajax->divEnd('loading'); 
    1313     
    1414echo  $html->para(null, $ajax->link($html->image('actions/new.png', array("alt"=>"Add new category", "title"=>"Add new category")),                   '/admin/catfaqs/add',  
  • trunk/app/views/layouts/admin.ctp

    r611 r613  
    66 <head> 
    77  <title>Karamelo</title> 
    8 <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> 
     8<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> 
    99<!--[if gte IE 5.5]> 
    1010   <?php  echo $javascript->link('dhtml'); ?> 
  • trunk/app/views/users/admin_edit.ctp

    r541 r613  
    6262 
    6363<fieldset> 
    64   <legend>Upload new avatar</legend> 
     64  <legend><?php __('Upload new avatar'); ?></legend> 
    6565  <br /> 
    6666   <p>An image 40 x 40 pixels</p> 
    67    <p> 
    6867   <?php  
    6968     echo $form->label('User.file', 'Avatar:' ); 
    7069     echo $form->file('User.file');  
    7170     echo $form->error('User.file', 'Title is required.');  
    72    ?> 
    73    
    74   <br /></fieldset> 
    75   <?php echo $form->end('Upload'); ?> 
    76  
     71     echo $form->end('Upload');  
     72?> 
     73</fieldset> 
    7774</div> 
    7875 
  • trunk/app/views/users/directory.ctp

    r603 r613  
    44<table style="margin: 0 auto;border:1px dotted gray;width:100%;"> 
    55 
    6 <tr style="padding:7px;color:green;font-size:13pt;border:1px dotted gray;text-align:center;">  
     6<tr style="padding:7px;color:green;font-size:9pt;border:1px dotted gray;text-align:center;">  
    77   <td>Name</td>  
    88   <td>Message</td>  
     
    1313<?php  
    1414foreach ($users as $val): 
    15   echo '<tr> <td>'. $val['User']['username'] .'</td> <td>'.$html->link(__('Write message',true), '/messages/write').'</td>'; 
    16   echo '<td>'.$html->link($val['User']['name'], '/users/entry/'.$val['User']['username']) .'</td> <td>'. $val['User']['last_visit'] .'</td></tr>'; 
     15  echo '<tr> <td>'. $val['User']['username'] .'</td> <td>'.$html->link(__('Write message',true), '/messages/compose').'</td>'; 
     16  echo '<td>'.$html->link($val['User']['name'], '/users/blog/'.$val['User']['username']) .'</td> <td>'. $val['User']['last_visit'] .'</td></tr>'; 
    1717endforeach; 
    1818?>