summaryrefslogtreecommitdiff
path: root/app/views/projects/_project_templates.html.haml
blob: 97cf13df0704eb8e996a88433f059190a4660933 (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[template_name]", id: template.name, value: template.name }
      = custom_icon(template.logo)
      = template.title