Is it possible to pass a variable to a Customer Model Manager? I want to pass a variable to the Customer Manager and then use this Manager within an inclusion Tag. Example below.
class UserPoint(models.Manager): def get_query_set(self): return super(UserPoint,self).get_query_set().filter(user=username) @register.inclusion_tag('points.html') def show_points(username): qs=PointTransaction.objects.filter(user=username) # This works fine without using Custom Model Manager #qs=PointTransaction.userpoint.all() # This does not work. 'username' is not defined. return { 'points': qs } MerMer --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---