- Timestamp:
- 01/18/06 18:45:19 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/templates/scaffolds/generator_templates/view_edit.phtml
r113 r117 1 <h1>Editing <? =$singluar_model_name ?></h1>1 <h1>Editing <?php echo $singluar_model_name ?></h1> 2 2 3 < ? = start_form_tag(array(":action" => "edit", ":id" => $<?=$singluar_model_name ?>)) ? >4 < ? =$this->render_partial("form") ? ><br>5 < ? =submit_tag("Edit") ? >6 < ? =end_form_tag() ? >3 < ?php echo start_form_tag(array(":action" => "edit", ":id" => $<?php echo $singluar_model_name ?>)) ? > 4 < ?php echo $this->render_partial("form") ? ><br> 5 < ?php echo submit_tag("Edit") ? > 6 < ?php echo end_form_tag() ? > 7 7 8 8 <br> 9 9 10 < ? = link_to("Show", array(":action" => "show", ":id" => $<?=$singluar_model_name ?>)) ? > |11 < ? =link_to("Back", array(":action" => "index")) ? >10 < ?php echo link_to("Show", array(":action" => "show", ":id" => $<?php echo $singluar_model_name ?>)) ? > | 11 < ?php echo link_to("Back", array(":action" => "index")) ? >
