duplicate-path-assignment
$URL
is uselessly assigned twiceconflicting-path-assignment
$URL
is assigned once to view $VIEW
and once to $DIFFERENT_VIEW
, which can lead to unexpected behavior. Verify what the intended target view is and delete the other route.duplicate-path-assignment-different-names
$URL
is assigned twice with different namesduplicate-name-assignment
$NAME
is used for both $URL
and $OTHER_URL
, which can lead to unexpected behavior when using URL reversing. Pick a unique name for each path.