Ankit Jaiswal
Ankit Jaiswal

Reputation: 763

Is Django admin difficult to customize?

I have been playing for a couple of days with Django Admin to explore it, but I am still clueless of how it can be customized in the way we need.

Every time I look for any help for the customization in the admin panel, what I find is, a bunch of articles on various communities and forums, explaining how to customize the template, the lists items, the the column views etc. But that should not be called Django Customization.

If I need to make even a small change in the User functionality or any modification to the auth module. It takes a lots of efforts even in figuring out how that can be done.

Is Django that difficult to customize or its just lack of the help available over internet for this or its me who is moving in the wrong direction ?

Upvotes: 25

Views: 21592

Answers (4)

Saurabh Chandra Patel
Saurabh Chandra Patel

Reputation: 13596

It's very easy . Just copy default template to project and change HTML and some variable location

Just see in this vedio

https://youtu.be/NTZfjwf4F8A

Upvotes: 0

TjerkW
TjerkW

Reputation: 2150

Django Admin is easy to customize if your requirements match what is customizable in Django. If you need fancy features that are not out-of-the-box functionality you either need to find a plugin that does it, or implement it yourself by subclassing the appropriate classes. Which can be difficult, and requires good understanding of the internals of Django.

So in summary: it makes it easier to setup an admin, but if you need anything special that's not out of the box: you got a steep learning curve.

Depending on your requirements you can choose to use django or not. Anything that requires a lot of functional speccing is better of implemented manually.

Upvotes: 1

the_void
the_void

Reputation: 5538

You are not providing enough details on what you want to achieve, so it's difficult to say how complex the task is. You might also want to consider not modifying the admin site at all and building your own views where appropriate.

However, here are some good links to get you started:

Upvotes: 24

MinorSwing
MinorSwing

Reputation: 31

Personally, if you want a site to look like the admin, why not pull the templates and styles and use them, build your own views for what you need. Gobs of documentation and forum help is there for that. I like the idea of customizing the admin, but honestly, I have been doing it for awhile on a project and time and time again I think to myself, if this was built in the standard MVC (or MTV) manner with free templates online, copied admin ones, or some professionally made ones, and built with the plethora of addons and my code, it would be much easier!!! And, when you decide that request/response isn't cutting it, and you want to add lots of JavaScript, you'll be glad. I know. I have had to put all sorts of JavaScript on our Admin project. Mostly because it's impossible to make the admin do what we want, so we fix it with JavaScript once it is on screen. When you find yourself writing an Ajax based system, you'll wonder why you have the admin at all.

If I could start this project over, I might not even use Django, but I probably would. I most certainly won't used the Admin.

Now, if you are building an basic CRUD type site that doesn't have style-eyed users, then Django with grappelli, and some elbow grease will get the job done. Remember, Django is a collection of Python scripts. Just override everything you can, and you'll get there, if you aren't too ambitious.

Upvotes: 3

Related Questions