Changeset 625 for trunk/app/views/lessons/admin_listing.ctp
- Timestamp:
- 07/04/08 15:06:44 (5 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/lessons/admin_listing.ctp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/lessons/admin_listing.ctp
r312 r625 1 <script type="text/javascript"> 2 window.onload = timedMsg; 3 </script> 4 <?php $session->flash(); ?> 5 <div class="title_section">Lessons</div> 6 7 <p><?php echo $html->link($html->image('actions/new.png', array("alt"=>"Add new", "title"=>"Add new")), '/admin/lessons/add', null, false, false) ?></p> 1 <?php 2 echo $html->div('title_section', __('Lessons', true)); 3 echo $html->para(null, $html->link($html->image('actions/new.png', array('alt'=>__('Add new', true), 'title'=>__('Add new', true))), '/admin/lessons/add', null, null, false)); 4 ?> 8 5 9 6 <table class="tbadmin"> 7 <?php 10 8 11 <?php 12 //die(print_r($data)); 13 14 $th = array ('Edit', 'Title', 'Status', 'Delete'); 9 $th = array(__('Edit', true), __('Title', true), __('Status', true), __('Delete', true)); 15 10 16 11 echo $html->tableHeaders($th);
