Currently, you cannot have multiple buttons with the same name and value and different labels. This code results in two buttons, not three: ``` ruby button_to :done, name: "voter[foo]", value: "0", id: "reason_skip_id_button", label: I18n.t(".skip_id") button_to :done, name: "voter[foo]", value: "0", id: "reason_no_id_button", label: I18n.t(".no_id") button_to :done, name: "voter[foo]", value: "1", id: "reason_has_id_button", label: I18n.t(".has_id") ```
Currently, you cannot have multiple buttons with the same name and value and different labels.
This code results in two buttons, not three: