]> git.decadent.org.uk Git - maypole.git/blobdiff - templates/factory/view
moved templates
[maypole.git] / templates / factory / view
diff --git a/templates/factory/view b/templates/factory/view
deleted file mode 100644 (file)
index 328678c..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-[%#
-
-=for doc
-
-The C<view> template takes some objects (usually just one) from
-C<objects> and displays the object's properties in a table. 
-
-=cut
-
-#%]
-[% PROCESS macros %]
-[% INCLUDE header %]
-[% FOR item = objects %]
-[% view_item(item); %]
-[%#
-
-=for doc
-
-The C<view> template also displays a list of other objects related to the first
-one via C<has_many> style relationships; this is done by calling the
-C<related_accessors> method - see L<Model/related_accessors> - to return
-a list of has-many accessors. Next it calls each of those accessors, and
-displays the results in a table.
-
-#%]
-    <br /><a href="[%base%]/[%item.table%]/list">Back to listing</a>
-[% view_related(item); %]
-    
-[%
-    button(item, "edit");
-    button(item, "delete");
-%]
-[% END; %]
-[% INCLUDE footer %]