Show
Ignore:
Timestamp:
07/15/08 14:38:50 (4 months ago)
Author:
aarkerio
Message:

Messages and news imprved

Files:
1 modified

Legend:

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

    r636 r653  
    11<?php 
    22//die(debug($data)); 
    3 echo $html->addCrumb('Control Tools', '/admin/news/start');  
    4 echo $html->addCrumb('Comments', '/admin/comments/listing');  
     3echo $html->addCrumb('Control Panel', '/admin/news/start');  
     4echo $html->addCrumb(__('News', true), '/admin/news/listing');  
    55echo $html->getCrumbs(' / ');  
    66  
    7 echo $html->div('title_section', 'Comments on News'); 
     7echo $html->div('title_section', __('Comments on News', true)); 
    88 
    99foreach ($data as $val): 
     
    1616   echo $html->div('grayblock', $tmp); 
    1717endforeach; 
     18 
     19 
     20$t  = $html->div(null,$paginator->prev('« '. __('Previous', true).' ',null,null,array('class'=>'disabled')),array('style'=>'width:100px;float:left')); 
     21$t .= $html->div(null, $paginator->next(' '.__('Next', true).' »', null, null, array('class' => 'disabled')),array('style'=>'width:100px;float:right')); 
     22$t .= $html->div(null,$paginator->counter(), array('style'=>'width:200px;float:center')); 
     23echo  $html->div(null,$t, array('style'=>'font-size:9pt;width:400px;margin:15px auto;')); 
    1824?>