summaryrefslogtreecommitdiff
path: root/app/views/projects/_project_templates.html.haml
blob: 949397755ba06a1d8fcf8e1b54d51ae664e9d986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- f ||= local_assigns[:f]

.project-templates-buttons
  %ul.nav-tabs.nav-links.nav.scrolling-tabs
    %li.built-in-tab
      %a.nav-link.active{ href: "#built-in", data: { toggle: 'tab'} }
        = _('Built-in')
        %span.badge.badge-pill= Gitlab::ProjectTemplate.all.count + Gitlab::SampleDataTemplate.all.count

.tab-content
  .project-templates-buttons.import-buttons.tab-pane.active#built-in
    = render partial: 'projects/project_templates/template', collection: Gitlab::ProjectTemplate.all + Gitlab::SampleDataTemplate.all

.project-fields-form
  = render 'projects/project_templates/project_fields_form'
  = render 'projects/new_project_fields', f: f, project_name_id: "template-project-name", hide_init_with_readme: true, track_label: "create_from_template"