Created
May 21, 2017 18:23
-
-
Save mikejakobsen/4ab3377a0441b1dc77de9085bd80f913 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%= render 'header' %> | |
| <ul class="episodes"> | |
| <% collection.each do |episode| %> | |
| <%= render 'list_item', user_episode: episode %> | |
| <% end %> | |
| </ul> | |
| <% if collection.empty? %> | |
| <% if action_name == 'index' %> | |
| <%= render 'empty_list' %> | |
| <% else %> | |
| <br> | |
| <br> | |
| <h4 class="text-center"><%t :saved %></h4> | |
| <% end %> | |
| <% end %> | |
| <br> | |
| <div class="pagination-centered"> | |
| <%= will_paginate collection %> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment