Inspectopedia Help

Duplicated block names

Reports duplicated block names in Django templates.

Example:

<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="style.css"> <title>{% block title %}My amazing site{% endblock %}</title> </head> <body> <div id="sidebar"> {% block title %} <ul> <li><a href="/">Home</a></li> <li><a href="/blog/">Blog</a></li> </ul> {% endblock %} </div> <div id="content"> {% block content %}{% endblock %} </div> </body> </html>

Inspection Details

By default bundled with:

PyCharm 2024.1,

Can be installed with plugin:

Django, 241.SNAPSHOT

Last modified: 29 April 2024