appirits/comable

View on GitHub
backend/app/views/kaminari/comable_backend/_paginator.html.slim

Summary

Maintainability
Test Coverage
= paginator.render do
  ul.pagination
    - unless current_page.first?
      == first_page_tag
      == prev_page_tag

    - each_page do |page|
      - if page.left_outer? || page.right_outer? || page.inside_window?
        == page_tag page
      - elsif !page.was_truncated?
        == gap_tag

    - unless current_page.last?
      == next_page_tag
      == last_page_tag