gitlab-org--gitlab-foss/app/views/admin/applications/show.html.haml

37 lines
862 B
Plaintext
Raw Normal View History

2015-04-30 17:06:18 +00:00
- page_title @application.name, "Applications"
2015-01-17 23:37:27 +00:00
%h3.page-title
Application: #{@application.name}
.table-holder.oauth-application-show
2015-10-19 09:19:45 +00:00
%table.table
%tr
%td
Application Id
%td
%code#application_id= @application.uid
%tr
%td
Secret:
%td
%code#secret= @application.secret
2015-01-17 23:37:27 +00:00
2015-10-19 09:19:45 +00:00
%tr
%td
Callback url
%td
- @application.redirect_uri.split.each do |uri|
%div
%span.monospace= uri
2017-07-24 20:45:12 +00:00
%tr
%td
Trusted
%td
= @application.trusted? ? 'Y' : 'N'
= render "shared/tokens/scopes_list", token: @application
2015-01-17 23:37:27 +00:00
.form-actions
2018-04-09 17:36:21 +00:00
= link_to 'Edit', edit_admin_application_path(@application), class: 'btn btn-primary wide float-left'
2015-01-17 23:37:27 +00:00
= render 'delete_form', application: @application, submit_btn_css: 'btn btn-danger prepend-left-10'