summaryrefslogtreecommitdiff
path: root/app/views/projects/_project_templates.html.haml
blob: 21baf35f2acc3daacef3fd4630a863ce42699b8f (plain)
1
2
3
4
5
6
7
8
9
10
.project-templates-buttons.import-buttons{ data: { toggle: "buttons" } }
  .btn.blank-option.active
    %input{ type: "radio",  autocomplete: "off", name: "project_templates", id: "blank", checked: "true" }
    = icon('file-o', class: 'btn-template-icon')
    Blank
  - Gitlab::ProjectTemplate.all.each do |template|
    .btn
      %input{ type: "radio",  autocomplete: "off", name: "project_templates", id: template.name }
      = custom_icon(template.logo)
      = template.title