polecenie django, aby pobrać wszystkie kolumny tabeli

table = Country.objects.values_list('name_of_the_country', 'country_code')
Dangerous Dove