I have a model with different scopes
class Contact
include Mongoid::Document
scope :active
scope :urgent
scope :no_one_in_charge
In some of my controller, I pull the active scopes
my_controller.rb
def my_action
@contacts = Contact.active
Now in the view, I'd like to generate many tables with more specific scoping
my_action.html.erb
<h3>Unassigned</h3>
<%= @contacts.[how Do I add the :no_one_in_charge scope ?] %>
<h3>Urgent</h3>
<%= @contacts.[how Do I add the :urgent scope ?] %>