From 14a9bc02f9752fa528afdc4e2bb38ed49782958c Mon Sep 17 00:00:00 2001 From: Raphael <raphael@joindiaspora.com> Date: Mon, 6 Dec 2010 15:56:46 -0800 Subject: [PATCH] Move aspect_contacts in to aspects --- app/views/{shared => aspects}/_aspect_contacts.haml | 0 app/views/aspects/index.html.haml | 2 +- app/views/aspects/show.html.haml | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename app/views/{shared => aspects}/_aspect_contacts.haml (100%) diff --git a/app/views/shared/_aspect_contacts.haml b/app/views/aspects/_aspect_contacts.haml similarity index 100% rename from app/views/shared/_aspect_contacts.haml rename to app/views/aspects/_aspect_contacts.haml diff --git a/app/views/aspects/index.html.haml b/app/views/aspects/index.html.haml index 2bb7512a29..a6a8b522bd 100644 --- a/app/views/aspects/index.html.haml +++ b/app/views/aspects/index.html.haml @@ -21,5 +21,5 @@ = will_paginate @posts .span-8.last - = render 'shared/aspect_contacts', :contacts => @contacts, :aspect => @aspect + = render 'aspects/aspect_contacts', :contacts => @contacts, :aspect => @aspect diff --git a/app/views/aspects/show.html.haml b/app/views/aspects/show.html.haml index bcf7898537..480eff296b 100644 --- a/app/views/aspects/show.html.haml +++ b/app/views/aspects/show.html.haml @@ -11,7 +11,7 @@ = link_to t('.edit_aspect'), "#", :id => "edit_aspect_trigger" .span-8.append-1 - = render 'shared/aspect_contacts', :contacts => @aspect_contacts, :aspect => @aspect + = render 'aspects/aspect_contacts', :contacts => @aspect_contacts, :aspect => @aspect = render 'aspects/edit_aspect_pane', :contacts => @contacts, :aspect => @aspect -- GitLab