diff options
author | Illya Klymov <xanf@xanf.me> | 2019-04-18 09:45:42 +0000 |
---|---|---|
committer | Kushal Pandya <kushalspandya@gmail.com> | 2019-04-18 09:45:42 +0000 |
commit | 027c756be43b6e6b2bfd9761a7228f8ac8687906 (patch) | |
tree | 4df24fc762ad116bf41774896436fe49f4d9a080 | |
parent | 33665fa5092321d50bc2ddb912a3a9a6cfe3a6b5 (diff) | |
download | gitlab-ce-027c756be43b6e6b2bfd9761a7228f8ac8687906.tar.gz |
Add instructions on how to contribute a "Built-In" template on projects/new"
-rw-r--r-- | app/views/projects/new.html.haml | 7 | ||||
-rw-r--r-- | changelogs/unreleased/xanf-gitlab-ce-add-template-link.yml | 5 | ||||
-rw-r--r-- | locale/gitlab.pot | 3 |
3 files changed, 14 insertions, 1 deletions
diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml index ff7c36c2d5b..95027634de2 100644 --- a/app/views/projects/new.html.haml +++ b/app/views/projects/new.html.haml @@ -48,7 +48,12 @@ = form_for @project, html: { class: 'new_project' } do |f| = render 'new_project_fields', f: f, project_name_id: "blank-project-name" - .tab-pane.no-padding{ id: 'create-from-template-pane', class: active_when(active_tab == 'template'), role: 'tabpanel' } + #create-from-template-pane.tab-pane.px-0.pb-0{ class: active_when(active_tab == 'template'), role: 'tabpanel' } + .card-slim.m-4.p-4 + %div + - contributing_templates_url = 'https://gitlab.com/gitlab-org/project-templates/contributing' + - link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: contributing_templates_url } + = _('Learn how to %{link_start}contribute to the built-in templates%{link_end}').html_safe % { link_start: link_start, link_end: '</a>'.html_safe } = form_for @project, html: { class: 'new_project' } do |f| .project-template .form-group diff --git a/changelogs/unreleased/xanf-gitlab-ce-add-template-link.yml b/changelogs/unreleased/xanf-gitlab-ce-add-template-link.yml new file mode 100644 index 00000000000..b868758dcd2 --- /dev/null +++ b/changelogs/unreleased/xanf-gitlab-ce-add-template-link.yml @@ -0,0 +1,5 @@ +--- +title: Add instructions on how to contribute a Built-In template for project +merge_request: 26976 +author: +type: other diff --git a/locale/gitlab.pot b/locale/gitlab.pot index 0d6cb4c85b5..6b1d9e268c5 100644 --- a/locale/gitlab.pot +++ b/locale/gitlab.pot @@ -5260,6 +5260,9 @@ msgstr "" msgid "Lead" msgstr "" +msgid "Learn how to %{link_start}contribute to the built-in templates%{link_end}" +msgstr "" + msgid "Learn more" msgstr "" |