- 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_show.phtml
r113 r117 1 < ? if(count($<?=$singluar_model_name?>->content_columns)): ? >2 < ? foreach($<?=$singluar_model_name?>->content_columns as $column): ? >1 < ?php if(count($<?php echo $singluar_model_name ?>->content_columns)): ? > 2 < ?php foreach($<?php echo $singluar_model_name ?>->content_columns as $column): ? > 3 3 <p> 4 <b>< ? =$column['human_name'] ? >:</b>5 < ? = $<?=$singluar_model_name?>->send($column['name']) ? >4 <b>< ?php echo $column['human_name'] ? >:</b> 5 < ?php echo $<?php echo $singluar_model_name ?>->send($column['name']) ? > 6 6 </p> 7 < ? endforeach; ? >8 < ? else: ? >7 < ?php endforeach; ? > 8 < ?php else: ? > 9 9 no table info found. 10 < ? endif; ? >10 < ?php endif; ? > 11 11 12 12 <br> 13 13 14 < ? = link_to("Edit", array(":action" => "edit", ":id" => $<?=$singluar_model_name ?>)) ? > |15 < ? =link_to("Back", array(":action" => "index")) ? >14 < ?php echo link_to("Edit", array(":action" => "edit", ":id" => $<?php echo $singluar_model_name ?>)) ? > | 15 < ?php echo link_to("Back", array(":action" => "index")) ? >
