How to change the input widget into a textfield in Django Model Admin form?
Note: If you want to read the blog series on Django Admin customization, then click here.
Suppose you have a Book model which has a description field as given below.
# app_name/models.py
class Book(models.Model):
...
description = models.Ch...
blog.devjunction.in1 min read