Q. | Is there a way to customize the index view? |
A. | Yes. You can copy the index.html file from the Django distribution into the admin subdirectory of your site template directory and make changes there. You can remove the following code that generates the list in the index and insert your own code to display your own links:
{% get_admin_app_list as app_list %} |
Q. | Is there a way to add custom JavaScript to the admin templates? |
A. | Yes. Add the custom JavaScript to the custom templates that you create or copy in the site template directory. |