debian-mirror-gitlab/app/views/projects/pages_domains/show.html.haml
2021-04-17 20:07:23 +05:30

22 lines
924 B
Text

- add_to_breadcrumbs _("Pages"), project_pages_path(@project)
- breadcrumb_title domain_presenter.domain
- page_title domain_presenter.domain
- verification_enabled = Gitlab::CurrentSettings.pages_domain_verification_enabled?
- if verification_enabled && domain_presenter.unverified?
= content_for :flash_message do
.gl-alert.gl-alert-warning
.container-fluid.container-limited
= _("This domain is not verified. You will need to verify ownership before access is enabled.")
%h3.page-title
= _('Pages Domain')
= render 'projects/pages_domains/helper_text'
%div
= form_for [@project, domain_presenter], html: { class: 'fieldset-form' } do |f|
= render 'form', { f: f }
.form-actions.d-flex.justify-content-between
= f.submit _('Save Changes'), class: "gl-button btn btn-confirm"
= link_to _('Cancel'), project_pages_path(@project), class: 'gl-button btn btn-default btn-inverse'