diff options
Diffstat (limited to 'app/views/enumerations/edit.rhtml')
-rw-r--r-- | app/views/enumerations/edit.rhtml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/views/enumerations/edit.rhtml b/app/views/enumerations/edit.rhtml new file mode 100644 index 000000000..3002b5936 --- /dev/null +++ b/app/views/enumerations/edit.rhtml @@ -0,0 +1,10 @@ +<h2><%=l(:label_enumerations)%></h2> + +<%= start_form_tag({:action => 'update', :id => @enumeration}, :class => "tabular") %> + <%= render :partial => 'form' %> + <%= submit_tag l(:button_save) %> +<%= end_form_tag %> + +<%= start_form_tag :action => 'destroy', :id => @enumeration %> + <%= submit_tag l(:button_delete) %> +<%= end_form_tag %>
\ No newline at end of file |