]> git.decadent.org.uk Git - maypole.git/blobdiff - templates/factory/view
Zero search fix and sweet new templates, wheee...
[maypole.git] / templates / factory / view
index cf7822e5498298cdb27516bb58b57218340331b7..19117b5e060836a5884b4e2977af5d4f72cdf653 100644 (file)
@@ -12,7 +12,7 @@ C<objects> and displays the object's properties in a table.
 [% INCLUDE header %]
 [% FOR item = objects %]
     [% SET string = item.stringify_column %]
-    <h2> [% item.$string %]</h2>
+    <div id="title"> [% item.$string %]</div>
     [% INCLUDE navbar %]
     <table class="view">
         <tr>
@@ -65,6 +65,7 @@ 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); %]
     
 [%