from django.views.generic import ListView, DetailView
from .models import City, Repairer
from .filters import CityFilter, RepFilter
class RepairerList( ListView):
model = Repairer
context_object_name = 'repairer'
template_name = 'repairerlist.html'
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context['get'] = City.objects.all()
return context
Пытаюсь через переменную в контексте передать в шаблон
Queryset
из другой таблицы
при обращении к БД с помощью
context['get'] = City.objects.all()
, выдает ошибку
type object 'City' has no attribute 'objects'