<%= _("Select the circles for %s") % followed_profile.name %>
<% circles.each do |circle| %>
<%= labelled_check_box circle.name, "circles[#{circle.name}]", circle.id, followed_profile.in_circle?(circle, follower) %>
<% end %>
<%= button(:add, _('New Circle'), '#', :id => "new-circle") %>
<%= labelled_text_field _('Circle name') , 'circle[name]', "",:id => 'text-field-name-new-circle'%>
<%= hidden_field_tag('circle[profile_type]', followed_profile.class.name) %>
<%= button_bar do %>
<%= button(:save, _('Create'), {:profile => follower.identifier, :controller => 'circles', :action => 'xhr_create'}, :id => "new-circle-submit") %>
<%= button(:cancel, _('Cancel'), '#', :id => "new-circle-cancel") %>
<% end %>