Skip to content

Instantly share code, notes, and snippets.

@elvisgiv
Last active February 4, 2016 17:04
Show Gist options
  • Save elvisgiv/d87db2a6136c9f192f73 to your computer and use it in GitHub Desktop.
Save elvisgiv/d87db2a6136c9f192f73 to your computer and use it in GitHub Desktop.

две разные записи одного и того же:

1-st
  = link_to admin_users_path(team_id: item.id) do
    users
    %span
      = "(#{@users_count[item.id]})" || (0)
  
2-nd
  = link_to admin_users_path(team_id: item.id) do
    users
    %span
      (#{@users_count[item.id] || 0})
      
3-th
  = link_to admin_users_path(:team_id => item.id) do
    invitations
    %span
      -if @users_count[item.id]
        = "(#{@users_count[item.id]})"
      -else
        (0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment