InterviewSolution
Saved Bookmarks
| 1. |
What are the ways to customize the functionality of the Django admin interface? |
|
Answer» There are multiple ways to customize the functionality of the Django admin interface. You can piggyback on top of an add/change FORM that’s automatically generated by Django, you can add JAVASCRIPT modules using the js parameter. This parameter is basically a list of URLs that point to the JavaScript modules that are to be included in your PROJECT within a <script> tag. You can also write views for the admin if you want. |
|