diff --git a/app/views/registrant/contacts/show.html.erb b/app/views/registrant/contacts/show.html.erb index 9fdf41e02..6d08feccc 100644 --- a/app/views/registrant/contacts/show.html.erb +++ b/app/views/registrant/contacts/show.html.erb @@ -4,22 +4,22 @@
- <%= render 'registrant/contacts/partials/general' %> + <%= render 'registrant/contacts/show/general' %>
- <%= render 'registrant/contacts/partials/address' %> + <%= render 'registrant/contacts/show/address' %>
- <%= render 'registrant/contacts/partials/statuses', contact: @contact %> + <%= render 'registrant/contacts/show/statuses', contact: @contact %>
- <%= render 'registrant/contacts/partials/domains', contact: @contact %> + <%= render 'registrant/contacts/show/domains', contact: @contact %>
\ No newline at end of file diff --git a/app/views/registrant/contacts/partials/_address.html.erb b/app/views/registrant/contacts/show/_address.html.erb similarity index 100% rename from app/views/registrant/contacts/partials/_address.html.erb rename to app/views/registrant/contacts/show/_address.html.erb diff --git a/app/views/registrant/contacts/partials/_domains.html.erb b/app/views/registrant/contacts/show/_domains.html.erb similarity index 100% rename from app/views/registrant/contacts/partials/_domains.html.erb rename to app/views/registrant/contacts/show/_domains.html.erb diff --git a/app/views/registrant/contacts/partials/_general.html.erb b/app/views/registrant/contacts/show/_general.html.erb similarity index 100% rename from app/views/registrant/contacts/partials/_general.html.erb rename to app/views/registrant/contacts/show/_general.html.erb diff --git a/app/views/registrant/contacts/partials/_search.html.erb b/app/views/registrant/contacts/show/_search.html.erb similarity index 100% rename from app/views/registrant/contacts/partials/_search.html.erb rename to app/views/registrant/contacts/show/_search.html.erb diff --git a/app/views/registrant/contacts/partials/_statuses.html.erb b/app/views/registrant/contacts/show/_statuses.html.erb similarity index 100% rename from app/views/registrant/contacts/partials/_statuses.html.erb rename to app/views/registrant/contacts/show/_statuses.html.erb