In the model there is a field with string values separated by commas and there is a list with which you need to compare these values. Something like that
all = Post.objects.filter(cities__in=citylst) How can this be implemented - how to change field formats and then filter the records, where is the intersection of their lists with the given list?