I have a model Category which has a FK reference to itself. How can i send the data to a template and make it look like this
- Category 1
- List item
- List item
- Category 2
- List item
- List item
|
|
I have a model Category which has a FK reference to itself. How can i send the data to a template and make it look like this
|
|||
|
|
|
|
Looks like you're trying to make recursion work in templates. This might help: http://www.undefinedfire.com/lab/recursion-django-templates/ |
||
|
|
|
|
You might be looking for something like this: models.py
views.py
template.html
|
|||
|
|