debian-mirror-gitlab/app/views/doorkeeper/applications/show.html.haml

31 lines
772 B
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title @application.name, "Applications"
2015-04-26 12:48:37 +05:30
%h3.page-title
Application: #{@application.name}
2017-08-17 22:00:37 +05:30
.table-holder.oauth-application-show
2015-11-26 14:37:03 +05:30
%table.table
%tr
%td
Application Id
%td
%code#application_id= @application.uid
%tr
%td
Secret:
%td
%code#secret= @application.secret
2015-04-26 12:48:37 +05:30
2015-11-26 14:37:03 +05:30
%tr
%td
Callback url
%td
- @application.redirect_uri.split.each do |uri|
%div
%span.monospace= uri
2017-08-17 22:00:37 +05:30
= render "shared/tokens/scopes_list", token: @application
2015-04-26 12:48:37 +05:30
.form-actions
= link_to 'Edit', edit_oauth_application_path(@application), class: 'btn btn-primary wide pull-left'
= render 'delete_form', application: @application, submit_btn_css: 'btn btn-danger prepend-left-10'