]> git.decadent.org.uk Git - maypole.git/blobdiff - templates/factory/edit
Maypole::Application supports Maypole::HTTPD (which needs a patch).
[maypole.git] / templates / factory / edit
index 5feb34eb0d128153daff76b41158495ca0497162..6bdad79347cef088c484d66ec30a546387772fb9 100644 (file)
@@ -3,7 +3,7 @@
 =head1 edit
 
 This is the edit page. It edits the passed-in object, by displaying a
-form similar to L<add_new> but with the current values filled in.
+form similar to L<addnew> but with the current values filled in.
 
 =cut
 
@@ -11,6 +11,7 @@ form similar to L<add_new> but with the current values filled in.
 [% PROCESS macros %]
 [% INCLUDE header %]
 [% INCLUDE title %]
+[% IF objects.size %]
 <div id="title">Edit a [% classmetadata.moniker %]</div>
 [% FOR item = objects; %]
 <form action="[% base %]/[% item.table %]/do_edit/[% item.id %]" method="post">
@@ -25,10 +26,13 @@ form similar to L<add_new> but with the current values filled in.
     IF errors.$col; 
        '<span class="error">'; errors.$col;'</span>';
     END;
-    END;
-    '<input type="submit" name="edit" value="edit"/>';
-    "</fieldset></form>";
-    
     END %]
-
+    <input type="submit" name="edit" value="edit"/>
+    <input type="hidden" name="__form_id" value="[% request.make_random_id %]">
+    </fieldset></form>
+    
+    [% END %]
+[% ELSE %]
+[% INCLUDE addnew %]
+[% END %]
 [% INCLUDE footer %]