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 | |
---|---|
Available in: | PyCharm 2023.3 |
Plugin: | Python, 233.SNAPSHOT |
Last modified: 13 July 2023