About the {% load %} Template Tag

Django coding style document tells you to list libraries in the {% load %} template tags in alphabetical order. If you want to follow this practice in your project and you have an existing codebase which doesn't follow that, use the following Vibe Coding prompt to fix it:

Go through all Django templates of the project and if there are multiple {% load %} tags in the same template, merge them into one. Then sort the libraries in the {% load %} tags alphabetically.

Tips and Tricks Programming Vibe Coding Prompt Driven Development