Changeset 666 for trunk/app/views/tests/admin_edit.ctp
- Timestamp:
- 07/22/08 17:08:42 (4 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/tests/admin_edit.ctp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/tests/admin_edit.ctp
r362 r666 1 1 <?php 2 echo $html->addCrumb('Control Tools', '/admin/entries/start');3 echo $html->addCrumb( 'Test', '/admin/tests/listing');2 echo $html->addCrumb('Control Panel', '/admin/entries/start'); 3 echo $html->addCrumb(__('Test', true), '/admin/tests/listing'); 4 4 echo $html->getCrumbs(' / '); 5 5 … … 10 10 <legend>Edit test</legend> 11 11 <?php 12 echo $html->div('required', $form->input('Test.title', array("size" => 40, "maxlength" => 120))); 13 14 echo $html->div('required', $form->label('Test.description', 'Description:') . $form->textarea('Test.description', array("cols" => 50, "rows" => 15))); 12 echo $html->div('required', $form->input('Test.title', array('size'=> 40,'maxlength' => 120, ''=>__('Title'. true)))); 13 echo $html->div('required', $form->label('Test.description', __('Description', true)) . $form->textarea('Test.description', array("cols" => 50, "rows" => 15))); 15 14 16 15 echo $html->div('required', $form->label('Test.status', 'Published:' ) . $form->checkbox('Test.status', array('value'=>1))); 17 16 18 echo $form->end( 'Save');17 echo $form->end(__('Save', true)); 19 18 ?> 20 19 </fieldset>
