Skip to content

Instantly share code, notes, and snippets.

View cveneziani's full-sized avatar

Cecile Veneziani cveneziani

View GitHub Profile
@cveneziani
cveneziani / snippets.md
Last active March 12, 2021 13:10
Snippets

Snippets

Simple Form - Custom dyamic radio button labels

<%= simple_form_for :search, url: chatrooms_path, method: :get do |f| %>
  <%= f.input :tag,
      collection: ["truc", "bidule", "machin"],
      as: :check_boxes,
      multiple: true,