Show
Ignore:
Timestamp:
08/14/08 15:21:41 (4 months ago)
Author:
aarkerio
Message:

Little changes

Location:
trunk/app/views/ecourses
Files:
2 modified

Legend:

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

    r722 r724  
    22echo $html->addCrumb('Control Panel', '/admin/entries/start'); 
    33echo $html->getCrumbs(' / ');  
     4 
     5echo $html->div('title_section', 'eCourses'); 
    46 
    57echo $html->para(null, $html->link($html->image('actions/new.png', array('alt'=>__('Add new', true), 'title'=>__('Add new',true))),  '/admin/ecourses/add', null, null, false)); 
  • trunk/app/views/ecourses/admin_vclassrooms.ctp

    r624 r724  
    33 
    44echo $html->addCrumb('Control Panel', '/admin/entries/start'); 
    5 echo $html->addCrumb('Courses', '/admin/ecourses/listing');  
     5echo $html->addCrumb('eCourses', '/admin/ecourses/listing');  
    66echo $html->getCrumbs(' / ');  
    77 
    8 $str =  'Classrooms  on ' . $data['Ecourse']['title']; 
     8$str = __('vGroups on', true) .': '. $data['Ecourse']['title']; 
    99 
    1010if ( isset( $historic ) ): 
     
    1616 
    1717if ( count($data['Vclassroom']) < 1 ): 
    18     e($html->div('notice', 'No classrooms yet')); 
     18    e($html->div('notice', __('No vGroups yet', true))); 
    1919    $img = 'admin/vgroups-gray.gif';  
    2020else: 
     
    2222endif; 
    2323 
    24 echo  $html->para(null, $html->link($html->image($img, array("alt"=>"Add new group", "title"=>"Add new group")),  '/admin/vclassrooms/add/'.$data['Ecourse']['id'], null, null, false)); 
     24echo  $html->para(null, $html->link($html->image($img, array('alt'=>__('Add new', true), 'title'=>__('Add new', true))),  '/admin/vclassrooms/add/'.$data['Ecourse']['id'], null, null, false)); 
    2525 
    2626 
     
    4040endforeach; 
    4141 
    42 if ( !isset( $historic ) ): 
     42/* if ( !isset( $historic ) ): 
    4343echo $html->link( 
    4444                $html->image('admin/historic.png', array('alt'=>__('Filed classrooms', true), 'title'=>__('Filed classrooms', true))),  
    4545                '/admin/ecourses/vclassrooms/'.$data['Ecourse']['id'].'/historic', null, null, false); 
    46 endif; 
     46endif; */ 
    4747?>