So tasking.point_of_contact is an integer value that is the same number as the user.id whose name (name is defined as :firstname + :lastname) I want to display.
How can I take the value in tasking.point_of_contact and use it to call the name of the corresponding user.id?
Right now I have:
<td><%= tasking.point_of_contact %></td>
I want that to display the name of the user whose user.id equals tasking.point_of_contact.
The relationship between user and taskings is a many-to-many.
I hope I've give you enough information. I may have been redundant, but I just want to be clear.