Changeset 613
- Timestamp:
- 06/30/08 16:52:19 (3 months ago)
- Location:
- trunk/app/views
- Files:
-
- 4 modified
-
catfaqs/admin_listing.ctp (modified) (1 diff)
-
layouts/admin.ctp (modified) (1 diff)
-
users/admin_edit.ctp (modified) (1 diff)
-
users/directory.ctp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/catfaqs/admin_listing.ctp
r541 r613 8 8 echo $html->getCrumbs(' / '); 9 9 10 echo $ ajax->div('loading', array('style'=>'display:none'));11 echo $html->image("static/loading.gif", array("alt"=>"Loading")); 12 echo $ajax->div End('loading');10 echo $html->div('title_section', __('FAQ categories', true)); 11 12 echo $ajax->div('loading', array('style'=>'display:none')). $html->image("static/loading.gif", array("alt"=>"Loading")).$ajax->divEnd('loading'); 13 13 14 14 echo $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 6 6 <head> 7 7 <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" /> 9 9 <!--[if gte IE 5.5]> 10 10 <?php echo $javascript->link('dhtml'); ?> -
trunk/app/views/users/admin_edit.ctp
r541 r613 62 62 63 63 <fieldset> 64 <legend> Upload new avatar</legend>64 <legend><?php __('Upload new avatar'); ?></legend> 65 65 <br /> 66 66 <p>An image 40 x 40 pixels</p> 67 <p>68 67 <?php 69 68 echo $form->label('User.file', 'Avatar:' ); 70 69 echo $form->file('User.file'); 71 70 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> 77 74 </div> 78 75 -
trunk/app/views/users/directory.ctp
r603 r613 4 4 <table style="margin: 0 auto;border:1px dotted gray;width:100%;"> 5 5 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;"> 7 7 <td>Name</td> 8 8 <td>Message</td> … … 13 13 <?php 14 14 foreach ($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>'; 17 17 endforeach; 18 18 ?>
