scoparta
scoparta

Reputation: 89

How to customize the look and feel of django admin

How to customize the look and feel of django admin?

Upvotes: 1

Views: 1558

Answers (4)

eos87
eos87

Reputation: 9353

try Django Grappelli

Bye!

Upvotes: 1

Black Hand
Black Hand

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

Steven Keith
Steven Keith

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

Raz
Raz

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

Related Questions