Show a delete button on the OAuth application view

This commit is contained in:
Tom Hughes 2012-04-23 21:30:57 +01:00
parent 53fe84fbef
commit 1e0bdda2f5
2 changed files with 8 additions and 1 deletions

View file

@ -24,4 +24,9 @@
<p><%= t'oauth_clients.show.support_notice' %></p>
<p><%= link_to t('oauth_clients.show.edit'), edit_oauth_client_url(@client_application.user.display_name, @client_application) %></p>
<table>
<tr>
<td><%= button_to t('oauth_clients.show.edit'), edit_oauth_client_path(@client_application.user.display_name, @client_application), :method => :get %></td>
<td><%= button_to t('oauth_clients.show.delete'), oauth_client_path(@client_application.user.display_name, @client_application), :method => :delete, :confirm => t('oauth_clients.show.confirm') %></td>
</tr>
</table>