class unprocessable

def destroy

DELETE <%= route_url %>/1.xml
DELETE <%= route_url %>/1
def destroy
  @<%= singular_table_name %> = <%= orm_class.find(class_name, "params[:id]") %>
  @<%= orm_instance.destroy %>
  respond_to do |format|
    format.html { redirect_to(<%= index_helper %>_url) }
    format.xml  { head :ok }
  end