commande django pour récupérer toutes les colonnes d'une table

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