debian-mirror-gitlab/app/views/projects/pages_domains/new.html.haml

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

12 lines
554 B
Text
Raw Normal View History

2019-03-02 22:35:43 +05:30
- add_to_breadcrumbs _("Pages"), project_pages_path(@project)
- page_title _('New Pages Domain')
2022-07-23 23:45:48 +05:30
%h1.page-title.gl-font-size-h-display
2019-03-02 22:35:43 +05:30
= _("New Pages Domain")
2019-09-04 21:01:54 +05:30
= render 'projects/pages_domains/helper_text'
2017-08-17 22:00:37 +05:30
%div
2023-03-04 22:38:38 +05:30
= gitlab_ui_form_for [@project, domain_presenter], html: { class: 'fieldset-form' } do |f|
2018-03-27 19:54:05 +05:30
= render 'form', { f: f }
2023-03-04 22:38:38 +05:30
.form-actions.gl-display-flex
= f.submit _('Create New Domain'), class: 'gl-mr-3', pajamas_button: true
= link_to _('Cancel'), project_pages_path(@project), class: 'gl-button btn btn-default btn-cancel'