X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e657cff464b6db8384b56236ad9491223a22b1e2..952188c814382b4ee0a90f6fc6084542dd113e75:/app/views/oauth_clients/edit.html.erb
diff --git a/app/views/oauth_clients/edit.html.erb b/app/views/oauth_clients/edit.html.erb
index 3ff72fee3..b0299689a 100644
--- a/app/views/oauth_clients/edit.html.erb
+++ b/app/views/oauth_clients/edit.html.erb
@@ -1,5 +1,9 @@
-
Edit your application
-<% form_for :client_application do |f| %>
- <%= render :partial => "form", :locals => { :f => f } %>
- <%= submit_tag "Edit" %>
-<% end %>
\ No newline at end of file
+<% content_for :heading do %>
+ <%= t ".title" %>
+<% end %>
+
+<%= render :partial => "settings_menu" %>
+
+<%= bootstrap_form_for @client_application, :url => oauth_client_path(@client_application.user.display_name, @client_application), :html => { :method => :put } do |f| %>
+ <%= render :partial => "form", :locals => { :f => f } %>
+<% end %>