Вот, например, кусок кода https://dpaste.de/Nj9E Все методы взаимодействуют с БД Такое ощущение, словно здесь что-то неправильно, в таком способе организации. Или нет?
a queryset is not iterable, to iterate through queryset items, u need to make a list of it with something = list(queryset), every item of that list is going to be an instance of your model class which u can apply model methods and fetch model attributes from
Вот, например, кусок кода https://dpaste.de/Nj9E Все методы взаимодействуют с БД Такое ощущение, словно здесь что-то неправильно, в таком способе организации. Или нет?
a queryset is not iterable, to iterate through queryset items, u need to make a list of it with something = list(queryset), every item of that list is going to be an instance of your model class which u can apply model methods and fetch model attributes from
Вот, например, кусок кода https://dpaste.de/Nj9E Все методы взаимодействуют с БД Такое ощущение, словно здесь что-то неправильно, в таком способе организации. Или нет?
Место где лежит код - точно не то, напрямую в models это складывать смысла нет
a queryset is not iterable, to iterate through queryset items, u need to make a list of it with something = list(queryset), every item of that list is going to be an instance of your model class which u can apply model methods and fetch model attributes from