I am working on a Django application which contains an Offer model. An Offer instance contains the pricing conditions and points to a product definiti
Offer
If you only need to point to "any product," not any model, then the solution is to have a Product model that all products inherit from (i.e. Television and Camcorder are both subclasses of Product), and give your Offer model a ForeignKey to Product.