DTThank You for the feedback. I have updated the post.Reply·Article·May 26, 2022·Django Models Part 2 (Models Relationship)
DTYou can add search field using search_fields attribute on your admin.ModelAdmin class. Full code will look like this class InformationAdmin(admin.ModelAdmin): list_filter = [ 'date_of_birth' ] search_fields = [ 'name' ]Reply·Article·May 22, 2022·Django Admin (Registering Models, Customizing Admin Site)
DTThank you Abhishek Joshi . Keep supporting.Reply·Article·Mar 12, 2022·Django Models Part I (Database Setup, Models and ORM)
DTNikki Goel Thank you. Also, have a look into Django official documentation regarding multi DB at https://docs.djangoproject.com/en/3.2/topics/db/multi-db/Reply·Article·Jul 26, 2021·Django Models Part I (Database Setup, Models and ORM)