I have a model for users and another for page. Now I want to implemented something like Facebook's like. A user can like any page. Later I have to retrieve a list of all likes by a single user and also a list of all users who have liked a particular page.
I tried with making a separate model for Likes and making two fields as User (OneToOne) and Page(OnetoOne). But how would I get the data later on?