I'm getting the following error message:
Reverse for 'code_front' with arguments '()' and keyword arguments '{'category_slug': u'code'}' not found.
I am new at this, please help.
|
I'm getting the following error message: Reverse for 'code_front' with arguments '()' and keyword arguments '{'category_slug': u'code'}' not found.
I am new at this, please help. |
||||
|
|
|
The error you're getting is because there's no match in your urls.py for the view and parameters you're using. An example: If your urls.py look like this:
You can reverse it's url like this: In a template:
The same can be done in your python code:
You'll need to import the
|
|||
|
|
|
Some basics:
|
|||
|
|