| 68 | |
| 69 | |
| 70 | == django.core.urlresolver == |
| 71 | |
| 72 | {{{ |
| 73 | ImproperlyConfigured: The included urlconf %s doesn't have any patterns in it. |
| 74 | }}} |
| 75 | |
| 76 | Uninformative foremost as '''%s''' is top-level urls (problem usually in included urls). |
| 77 | |
| 78 | Caused by using '''reverse''' rather than '''reverse_lazy''' in some view. |
| 79 | |
| 80 | No feedback whatsoever is given as to: |
| 81 | - that the error is caused by view rather than url |
| 82 | - which view this might be, or even which app it is in. |
| 83 | |
| 84 | |
| 85 | '''Context:''' You get this error starting the developer server. The error is cached (#11712) and fixing it doesn't make the error go away adding to the confusion.[[BR]] |
| 86 | '''Suggestion:''' At least more specificity as to where the error lies. |
| 87 | |
| 88 | Related tickets: |
| 89 | |
| 90 | - https://code.djangoproject.com/ticket/17084 |
| 91 | - https://code.djangoproject.com/ticket/15685 |
| 92 | - https://code.djangoproject.com/ticket/11712 |