debian-mirror-gitlab/app/views/help/instance_configuration/_gitlab_pages.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
1 KiB
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- gitlab_pages = @instance_configuration.settings[:gitlab_pages]
- content_for :table_content do
2021-04-29 21:17:54 +05:30
%li= link_to _('GitLab Pages'), '#gitlab-pages'
2018-03-17 18:26:18 +05:30
- content_for :settings_content do
%h2#gitlab-pages
2021-04-29 21:17:54 +05:30
= _('GitLab Pages')
2018-03-17 18:26:18 +05:30
%p
2021-11-18 22:05:49 +05:30
- link_to_gitlab_pages = link_to(_('GitLab Pages'), gitlab_pages[:url], target: '_blank', rel: 'noopener noreferrer')
2021-04-29 21:17:54 +05:30
= _('Below are the settings for %{link_to_gitlab_pages}.').html_safe % { link_to_gitlab_pages: link_to_gitlab_pages }
2018-03-17 18:26:18 +05:30
.table-responsive
%table
%thead
%tr
2021-04-29 21:17:54 +05:30
%th= _('Setting')
2018-03-17 18:26:18 +05:30
%th= instance_configuration_host(@instance_configuration.settings[:host])
%tbody
%tr
2021-04-29 21:17:54 +05:30
%td= _('Domain Name')
2018-03-17 18:26:18 +05:30
%td
%code= instance_configuration_cell_html(gitlab_pages[:host])
%tr
2021-04-29 21:17:54 +05:30
%td= _('IP Address')
2018-03-17 18:26:18 +05:30
%td
%code= instance_configuration_cell_html(gitlab_pages[:ip_address])
%tr
2021-04-29 21:17:54 +05:30
%td= _('Port')
2018-03-17 18:26:18 +05:30
%td
%code= instance_configuration_cell_html(gitlab_pages[:port])