aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/erb/scaffold/templates/new.html.erb
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2010-11-15 22:39:28 -0600
committerPiotr Sarnacki <drogus@gmail.com>2010-11-16 16:38:14 +0100
commitced8ebcee0fa09939f82cacc59a864f5625e4bd5 (patch)
treef22ee935f16c887c16003e66236e051e19cf7df4 /railties/lib/rails/generators/erb/scaffold/templates/new.html.erb
parenta820d0afdd4a09e0902d7b7c4d9724f50089d254 (diff)
downloadrails-ced8ebcee0fa09939f82cacc59a864f5625e4bd5.tar.gz
rails-ced8ebcee0fa09939f82cacc59a864f5625e4bd5.tar.bz2
rails-ced8ebcee0fa09939f82cacc59a864f5625e4bd5.zip
Change inside_namespace method to inside_template and use it in all templates by default
The initial implementation of namespacing was based on wrong assumptions. Namespacing path and class names in templates should be based on current namespace and skip_namespace attribute, but it should be not necessary to wrap content on all the templates into additional block methods.
Diffstat (limited to 'railties/lib/rails/generators/erb/scaffold/templates/new.html.erb')
-rw-r--r--railties/lib/rails/generators/erb/scaffold/templates/new.html.erb2
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/erb/scaffold/templates/new.html.erb b/railties/lib/rails/generators/erb/scaffold/templates/new.html.erb
index fe4d0971c4..02ae4d015e 100644
--- a/railties/lib/rails/generators/erb/scaffold/templates/new.html.erb
+++ b/railties/lib/rails/generators/erb/scaffold/templates/new.html.erb
@@ -1,7 +1,5 @@
-<% without_namespacing do -%>
<h1>New <%= singular_table_name %></h1>
<%%= render 'form' %>
<%%= link_to 'Back', <%= index_helper %>_path %>
-<% end -%>