3611b664a9
The button didn't override a value, so the old value was posted again.
10 lines
525 B
Text
10 lines
525 B
Text
.project-templates-buttons.import-buttons{ data: { toggle: "buttons" } }
|
|
.btn.blank-option.active
|
|
%input{ type: "radio", autocomplete: "off", name: "project[template_name]", id: "blank", checked: "true", value: "" }
|
|
= 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
|