summaryrefslogtreecommitdiff
path: root/app/views/projects/project_templates/_built_in_templates.html.haml
blob: 5b4d8927045fc76501b5a0ee1fa6a2df34c93488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- Gitlab::ProjectTemplate.all.each do |template|
  .template-option.d-flex.align-items-center
    .logo.append-right-10
      = custom_icon(template.logo, size: 40)
    .description
      %strong
        = template.title
      %br
      .text-muted
        = template.description
    .controls.d-flex.align-items-center
      %a.btn.btn-default.append-right-10{ href: template.preview, rel: 'noopener noreferrer', target: '_blank', data: { track_label: "create_from_template", track_property: "template_preview", track_event: "click_button", track_value: template.name } }
        = _("Preview")
      %label.btn.btn-success.template-button.choose-template.append-bottom-0{ for: template.name }
        %input{ type: "radio",  autocomplete: "off", name: "project[template_name]", id: template.name, value: template.name, data: { track_label: "create_from_template", track_property: "template_use", track_event: "click_button" } }
        %span
          = _("Use template")