Changeset 117 for trunk/trax/vendor/trax/templates/scaffolds/edit.phtml
- Timestamp:
- 01/18/06 18:45:19 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/templates/scaffolds/edit.phtml
r113 r117 1 <h1>Editing <? =$model_object_name ?></h1>1 <h1>Editing <?php echo $model_object_name ?></h1> 2 2 3 <? =error_messages_for($model_object_name) ?>4 <? = form($model_object_name, array(":action" => "edit",'submit_value'=> "Update")) ?>3 <?php echo error_messages_for($model_object_name) ?> 4 <?php echo form($model_object_name, array(":action" => "edit", "submit_value" => "Update")) ?> 5 5 6 <? =link_to("Show", array(":action" => "show", ":id" => $$model_object_name->id)) ?> |7 <? =link_to("Back", array(":action" => "index")) ?>6 <?php echo link_to("Show", array(":action" => "show", ":id" => $$model_object_name->id)) ?> | 7 <?php echo link_to("Back", array(":action" => "index")) ?>
