I have probably a very simple error but I can’t figure it out.
I have a category model that looks like this. Navbar field is for putting the category name and link to it in the navbar section on the page.
JavaScript
x
7
1
class Category(models.Model):
2
category = models.CharField(max_length=20,unique=True)
3
navbar = models.BooleanField(null=False, blank=False, default=True)
4
5
def __str__(self):
6
return self.category
7
Due to menu layout looking like this I need to set nav links manually
JavaScript
1
2
1
nav - nav - language_changer - nav - nav
2
So I’ve set them like this
JavaScript
1
7
1
<a href='{% url "category" category="{navbarList.0.id }" %}'>
2
{{ navbarList.0.category }}
3
</a>
4
<a href='{% url "category" category="{navbarList.1.id }" %}'>
5
{{ navbarList.1.category }}
6
</a>
7
And this throws error
JavaScript
1
3
1
ValueError at /category/{{ navbarList.0.id }}/
2
Field 'id' expected a number but got '{{ navbarList.0.id }}'.
3
Advertisement
Answer
You should not wrap variables included in tags with braces, remove them and reference the variable without any wrapper
JavaScript
1
2
1
<a href='{% url "category" category=navbarList.0.id %}'>
2