Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.html.haml « users « jira_connect « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf88acd6976301d781e78ed2dbd2431688411adf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.jira-connect-users-container.gl-text-center
  - user_link = link_to(current_user.to_reference, user_path(current_user), target: '_blank', rel: 'noopener noreferrer')
  %h2= _('You are signed in to GitLab as %{user_link}').html_safe % { user_link: user_link }

  %p= s_('Integrations|You can now close this window and return to the GitLab for Jira application.')

  - if @jira_app_link
    %p= external_link s_('Integrations|Return to GitLab for Jira'), @jira_app_link, class: 'gl-button btn btn-confirm'

  %p= link_to _('Sign out'), destroy_user_session_path, method: :post

- add_page_specific_style 'page_bundles/jira_connect_users'