[Fixed]-How to use value from argument into another argument Django Views

1👍

It looks like you need to use args['subc'] instead of "subc" like this:

args['shopfilters'] = Shop.objects.filter(shop_category_id = args['subc'])

since args[‘subc’] will contain an Subc id, isn’t it?

👤Paul

Leave a comment