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

new.html.haml « pages_domains « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6de8117df6b7c078ea43e835b84b7c3a6626409c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- add_to_breadcrumbs _("Pages"), project_pages_path(@project)
- page_title _('New Pages Domain')
%h1.page-title.gl-font-size-h-display
  = _("New 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
      = f.submit _('Create New Domain'), class: "gl-button btn btn-confirm"
      .float-right
        = link_to _('Cancel'), project_pages_path(@project), class: 'gl-button btn btn-default btn-cancel'