Changeset 701 for trunk/app/views/quotes
- Timestamp:
- 08/08/08 16:03:49 (4 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/quotes/admin_listing.ctp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/quotes/admin_listing.ctp
r610 r701 1 1 <?php 2 echo $html->addCrumb('Control Panel', '/admin/entries/start');3 echo $html->getCrumbs(' / ');2 echo $html->addCrumb('Control Panel', '/admin/entries/start'); 3 echo $html->getCrumbs(' / '); 4 4 5 echo $html->div('title_section', __('Quotes', true));5 echo $html->div('title_section', __('Quotes', true)); 6 6 7 echo $html->para(null, $html->link($html->image('actions/new.png', array('alt'=>'Add new quote','title'=>'Add new quote')), '#', array("onclick"=>"hU()"), false, false)); ?>7 echo $html->para(null, $html->link($html->image('actions/new.png', array('alt'=>__('Add new', true),'title'=>__('Add new', true))), '#', array("onclick"=>"hU()"), false, false)); ?> 8 8 9 9 <div id="trh" style="margin:0;padding:0;padding-left:40px;width:80%;display:none;"> … … 12 12 <legend><?php __('New quote'); ?></legend> 13 13 <?php 14 echo $form->input('Quote.quote', array( "size" => 60, "maxlength"=>130));14 echo $form->input('Quote.quote', array('size'=> 60, 'maxlength'=>130)); 15 15 echo $form->error('Quote.quote', 'A quote is required.'); 16 16 … … 21 21 <div style="clear:both"></div> 22 22 </fieldset> 23 <?php echo $form->end( 'Save'); ?>23 <?php echo $form->end(__('Save', true)); ?> 24 24 25 25 </div>
