<%= _('Oauth Client Settings') %>
<%= _('Providers') %>
<%= button :add, _('New'), {:action => 'new'} %>
<%= _('Name') %> |
<%= _('Strategy') %> |
<%= _('Actions') %> |
<% environment.oauth_providers.each do |provider| %>
<%= provider.name %> |
<%= provider.strategy %> |
<%= link_to _('Edit'), {:action => 'edit', :id => provider.id} %>
<%= link_to _('Remove'), {:action => 'remove', :id => provider.id} %>
|
<% end %>
<%= button(:back, _('Go back'), {:controller => 'plugins', :action => 'index'}) %>