I am trying to create a bootstrap group buttons 4 per row until there are no buttons remaining. Static HAML code I want to achive is below (note that btn-group has a dropdown so its quite large underneath)
.btn-group.btn-group-justified
.btn-group
...
.btn-group
...
.btn-group
...
.btn-group
...
.btn-group.btn-group-justified
.btn-group
...
.btn-group
...
.btn-group
...
.btn-group
...
.btn-group.btn-group-justified
.btn-group
...
.btn-group
...
.btn-group
...
.btn-group
...
My current try (which doesn't work) follows:
- some_array.each_with_index do |w,i|
- if i % 4 == 0
.btn-group.btn-group-justified
.btn-group
...
Thanks!