Skip to content

Instantly share code, notes, and snippets.

@ahmad19
Last active November 6, 2019 13:57
Show Gist options
  • Save ahmad19/c4c3f197613f7de5235467f23e326bb6 to your computer and use it in GitHub Desktop.
Save ahmad19/c4c3f197613f7de5235467f23e326bb6 to your computer and use it in GitHub Desktop.
# Examples of select_tag in forms
```ruby
class SomeModel < ActiveRecord::Base
enum status: %i[draft pending paid]
end
```
```html
<%= f.select :status, Receipt.statuses.keys.map{ |w| [w.humanize, w] }, { include_blank: true }, { class: 'form-control', required: true } %>
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment