Skip to content

Instantly share code, notes, and snippets.

@DanielAmah
Last active May 29, 2020 16:51
Show Gist options
  • Save DanielAmah/116e637caa7b1e6c491964ca7012d905 to your computer and use it in GitHub Desktop.
Save DanielAmah/116e637caa7b1e6c491964ca7012d905 to your computer and use it in GitHub Desktop.
## Using Bootstrap 4.0 and with the assumption that kaminari pagination gem is installed.
<div class="container">
<% @subscriptions.each do |subscription| %>
<div class="row">
<div class="col-sm">
<%= subscription.email
<div>
<div class="col-sm">
<%= subscription.plan_id
<div>
<div>
<% end %>
<%= paginate @subscriptions %>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment