Мне нужно вызвать поле выбора в Моделях из шаблона.
models.py
...
CAT = (
("1", "1"),
("2", "2"),
)
cat = models.CharField(max_length=2, choices=TYPE, default="")
...
views.py
def cat(request):
my_model = Model.objects.all()
return render(...{'post': post})
template.html
{% for i in my_model%}
{{ i.cat }}
# This shows DUPLICATES if I have couple posts with same cat.
# I want to display uniques in choices (I am not interested in posts at all)
{% endfor %}
Так, как я могу вызвать выбор в модели из шаблона, не показывая дубликаты?
P.S : я прошел выбор документов, ничего не помогло: https://docs.djangoproject.com/en/2.0/ref/models/fields/#choices