Reputation: 89
How to customize the look and feel of django admin?
Upvotes: 1
Views: 1558
Reputation: 290
1) ModelAdmin, you can customize the Forms for CRUD operations with this. 2) Overload your Admin Templates 3) Admin Tools and Grappelli provide great options to extend and customize the Django Admin
sorry, i can't post links but google can help easily with 1) and 2) searchs.
Upvotes: 0
Reputation: 1799
You should create ModelAdmin classes to customize the django admin site.
See this page in the django book for details:
http://www.djangobook.com/en/2.0/chapter06/
Upvotes: 1
Reputation: 605
Have you set up the tables in the DB yet? As per http://docs.djangoproject.com/en/1.2/intro/tutorial01/?
Upvotes: 0