ref: master
app/views/circles/index.html.erb
<%= _('Manage circles') %>
<%= _('Circle name') %> | <%= _('Profile type') %> | <%= _('Actions') %> |
---|---|---|
<%= circle.name %> | <%= _(circle.profile_type) %> |
<%= button_without_text :edit, _('Edit'), :action => 'edit', :id => circle %>
<%= button_without_text :delete, _('Delete'), { :action => 'destroy', :id => circle }, { "data-method" => "POST" } %>
|