Skip to content
Advertisement

How to search via Enums Django

I’m trying to a write a search function for table reserving from a restaurant, I have a restaurant model:

JavaScript

which has a enum for kitchen_type:

JavaScript

And this is the search function in view.py:

JavaScript

So how am I able to search for kitchen_type in the view?

Advertisement

Answer

Instead of using a list of tuples I would recommend extending the IntegerChoices or TextChoices classes provided by Django. Here’s an example of how you can use IntegerChoices:

JavaScript

https://docs.djangoproject.com/en/4.0/ref/models/fields/#enumeration-types

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement