Add 3 new type de champs : Pays, Régions et Départements
This commit is contained in:
parent
2edcd5a40d
commit
f1515616ff
12 changed files with 938 additions and 16 deletions
|
@ -57,7 +57,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
.type_champ-drop_down_list {
|
||||
.type_champ-drop_down_list, .type_champ-regions, .type_champ-departements, .type_champ-pays {
|
||||
@extend .col-md-4;
|
||||
@extend .col-lg-4;
|
||||
|
||||
|
|
|
@ -33,4 +33,16 @@ class Champ < ActiveRecord::Base
|
|||
end
|
||||
false
|
||||
end
|
||||
|
||||
def self.regions
|
||||
JSON.parse(Carto::GeoAPI::Driver.regions).sort_by{|e| e['nom']}.inject([]){|acc, liste| acc.push(liste['nom']) }
|
||||
end
|
||||
|
||||
def self.departements
|
||||
JSON.parse(Carto::GeoAPI::Driver.departements).inject([]){|acc, liste| acc.push(liste['code'] + ' - ' + liste['nom']) }
|
||||
end
|
||||
|
||||
def self.pays
|
||||
JSON.parse(Carto::GeoAPI::Driver.pays).inject([]){|acc, liste| acc.push(liste['nom']) }
|
||||
end
|
||||
end
|
||||
|
|
|
@ -12,6 +12,9 @@ class TypeDeChamp < ActiveRecord::Base
|
|||
address: 'address',
|
||||
yes_no: 'yes_no',
|
||||
drop_down_list: 'drop_down_list',
|
||||
pays: 'pays',
|
||||
regions: 'regions',
|
||||
departements: 'departements',
|
||||
header_section: 'header_section'
|
||||
}
|
||||
|
||||
|
|
|
@ -32,6 +32,15 @@
|
|||
- elsif champ.type_champ == 'drop_down_list'
|
||||
=render partial: 'users/description/champs/drop_down_list', locals: {champ: champ}
|
||||
|
||||
- elsif champ.type_champ == 'pays'
|
||||
=render partial: 'users/description/champs/pays', locals: {champ: champ}
|
||||
|
||||
- elsif champ.type_champ == 'regions'
|
||||
=render partial: 'users/description/champs/regions', locals: {champ: champ}
|
||||
|
||||
- elsif champ.type_champ == 'departements'
|
||||
=render partial: 'users/description/champs/departements', locals: {champ: champ}
|
||||
|
||||
-else
|
||||
%input.form-control{name:"champs['#{champ.id}']",
|
||||
placeholder: champ.libelle,
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
= render partial: 'users/description/champs/drop_down_template', locals: {values: Champ.departements, champ: champ}
|
|
@ -1,14 +1 @@
|
|||
%select{ name:"champs['#{champ.id}']",
|
||||
id: "champs_#{champ.id}" }
|
||||
- unless champ.drop_down_list.blank?
|
||||
- champ.drop_down_list.options.each do |option|
|
||||
- if (option=~ /^--.*--$/).nil?
|
||||
- if champ.value == option
|
||||
%option{selected:''}
|
||||
= option
|
||||
- else
|
||||
%option
|
||||
= option
|
||||
-else
|
||||
%option{disabled:''}
|
||||
= option
|
||||
= render partial: 'users/description/champs/drop_down_template', locals: {values: champ.drop_down_list.options, champ: champ}
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
%select{ name:"champs['#{champ.id}']",
|
||||
id: "champs_#{champ.id}" }
|
||||
|
||||
- unless values.blank?
|
||||
%option
|
||||
= ''
|
||||
|
||||
- values.each do |option|
|
||||
- if (option=~ /^--.*--$/).nil?
|
||||
- if champ.value == option
|
||||
%option{selected:''}
|
||||
= option
|
||||
- else
|
||||
%option
|
||||
= option
|
||||
-else
|
||||
%option{disabled:''}
|
||||
= option
|
1
app/views/users/description/champs/_pays.html.haml
Normal file
1
app/views/users/description/champs/_pays.html.haml
Normal file
|
@ -0,0 +1 @@
|
|||
= render partial: 'users/description/champs/drop_down_template', locals: {values: Champ.pays, champ: champ}
|
3
app/views/users/description/champs/_regions.html.haml
Normal file
3
app/views/users/description/champs/_regions.html.haml
Normal file
|
@ -0,0 +1,3 @@
|
|||
= render partial: 'users/description/champs/drop_down_template', locals: {values: Champ.regions, champ: champ}
|
||||
|
||||
|
|
@ -10,11 +10,14 @@ fr:
|
|||
date: 'Date'
|
||||
datetime: 'Date et Heure'
|
||||
number: 'Nombre'
|
||||
checkbox: 'checkbox'
|
||||
checkbox: 'Checkbox'
|
||||
civilite: 'Civilité'
|
||||
email: 'Email'
|
||||
phone: 'Téléphone'
|
||||
address: 'Adresse'
|
||||
yes_no: 'Oui/Non'
|
||||
drop_down_list: 'Menu déroulant'
|
||||
pays: 'Pays'
|
||||
regions: 'Régions'
|
||||
departements: 'Départements'
|
||||
header_section: 'Titre de section'
|
34
lib/carto/geo_api/driver.rb
Normal file
34
lib/carto/geo_api/driver.rb
Normal file
|
@ -0,0 +1,34 @@
|
|||
module Carto
|
||||
module GeoAPI
|
||||
class Driver
|
||||
|
||||
def self.regions
|
||||
call regions_url
|
||||
end
|
||||
|
||||
def self.departements
|
||||
call departements_url
|
||||
end
|
||||
|
||||
def self.pays
|
||||
File.open('lib/carto/geo_api/pays.json').read
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def self.call api_url
|
||||
RestClient.get api_url, params: { fields: :nom }
|
||||
rescue RestClient::ServiceUnavailable
|
||||
nil
|
||||
end
|
||||
|
||||
def self.departements_url
|
||||
'https://geo.api.gouv.fr/departements'
|
||||
end
|
||||
|
||||
def self.regions_url
|
||||
'https://geo.api.gouv.fr/regions'
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
851
lib/carto/geo_api/pays.json
Normal file
851
lib/carto/geo_api/pays.json
Normal file
|
@ -0,0 +1,851 @@
|
|||
[
|
||||
{
|
||||
"nom": "FRANCE"
|
||||
},
|
||||
{
|
||||
"nom": "----"
|
||||
},
|
||||
{
|
||||
"nom": "ACORES, MADERE"
|
||||
},
|
||||
{
|
||||
"nom": "AFGHANISTAN"
|
||||
},
|
||||
{
|
||||
"nom": "AFRIQUE DU SUD"
|
||||
},
|
||||
{
|
||||
"nom": "ALASKA"
|
||||
},
|
||||
{
|
||||
"nom": "ALBANIE"
|
||||
},
|
||||
{
|
||||
"nom": "ALGERIE"
|
||||
},
|
||||
{
|
||||
"nom": "ALLEMAGNE"
|
||||
},
|
||||
{
|
||||
"nom": "ANDORRE"
|
||||
},
|
||||
{
|
||||
"nom": "ANGOLA"
|
||||
},
|
||||
{
|
||||
"nom": "ANGUILLA"
|
||||
},
|
||||
{
|
||||
"nom": "ANTIGUA-ET-BARBUDA"
|
||||
},
|
||||
{
|
||||
"nom": "ANTILLES NEERLANDAISES"
|
||||
},
|
||||
{
|
||||
"nom": "ARABIE SAOUDITE"
|
||||
},
|
||||
{
|
||||
"nom": "ARGENTINE"
|
||||
},
|
||||
{
|
||||
"nom": "ARMENIE"
|
||||
},
|
||||
{
|
||||
"nom": "ARUBA"
|
||||
},
|
||||
{
|
||||
"nom": "AUSTRALIE"
|
||||
},
|
||||
{
|
||||
"nom": "AUTRICHE"
|
||||
},
|
||||
{
|
||||
"nom": "AZERBAIDJAN"
|
||||
},
|
||||
{
|
||||
"nom": "BAHAMAS"
|
||||
},
|
||||
{
|
||||
"nom": "BAHREIN"
|
||||
},
|
||||
{
|
||||
"nom": "BANGLADESH"
|
||||
},
|
||||
{
|
||||
"nom": "BARBADE"
|
||||
},
|
||||
{
|
||||
"nom": "BELGIQUE"
|
||||
},
|
||||
{
|
||||
"nom": "BELIZE"
|
||||
},
|
||||
{
|
||||
"nom": "BENIN"
|
||||
},
|
||||
{
|
||||
"nom": "BERMUDES"
|
||||
},
|
||||
{
|
||||
"nom": "BHOUTAN"
|
||||
},
|
||||
{
|
||||
"nom": "BIELORUSSIE"
|
||||
},
|
||||
{
|
||||
"nom": "BIRMANIE"
|
||||
},
|
||||
{
|
||||
"nom": "BOLIVIE"
|
||||
},
|
||||
{
|
||||
"nom": "BONAIRE, SAINT EUSTACHE ET SABA"
|
||||
},
|
||||
{
|
||||
"nom": "BOSNIE-HERZEGOVINE"
|
||||
},
|
||||
{
|
||||
"nom": "BOTSWANA"
|
||||
},
|
||||
{
|
||||
"nom": "BOUVET (ILE)"
|
||||
},
|
||||
{
|
||||
"nom": "BRESIL"
|
||||
},
|
||||
{
|
||||
"nom": "BRUNEI"
|
||||
},
|
||||
{
|
||||
"nom": "BULGARIE"
|
||||
},
|
||||
{
|
||||
"nom": "BURKINA"
|
||||
},
|
||||
{
|
||||
"nom": "BURUNDI"
|
||||
},
|
||||
{
|
||||
"nom": "CAIMANES (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "CAMBODGE"
|
||||
},
|
||||
{
|
||||
"nom": "CAMEROUN"
|
||||
},
|
||||
{
|
||||
"nom": "CAMEROUN ET TOGO"
|
||||
},
|
||||
{
|
||||
"nom": "CANADA"
|
||||
},
|
||||
{
|
||||
"nom": "CANARIES (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "CAP-VERT"
|
||||
},
|
||||
{
|
||||
"nom": "CENTRAFRICAINE (REPUBLIQUE)"
|
||||
},
|
||||
{
|
||||
"nom": "CHILI"
|
||||
},
|
||||
{
|
||||
"nom": "CHINE"
|
||||
},
|
||||
{
|
||||
"nom": "CHRISTMAS (ILE)"
|
||||
},
|
||||
{
|
||||
"nom": "CHYPRE"
|
||||
},
|
||||
{
|
||||
"nom": "CLIPPERTON (ILE)"
|
||||
},
|
||||
{
|
||||
"nom": "COCOS ou KEELING (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "COLOMBIE"
|
||||
},
|
||||
{
|
||||
"nom": "COMORES"
|
||||
},
|
||||
{
|
||||
"nom": "CONGO"
|
||||
},
|
||||
{
|
||||
"nom": "CONGO (REPUBLIQUE DEMOCRATIQUE)"
|
||||
},
|
||||
{
|
||||
"nom": "COOK (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "COREE"
|
||||
},
|
||||
{
|
||||
"nom": "COREE (REPUBLIQUE DE)"
|
||||
},
|
||||
{
|
||||
"nom": "COREE (REPUBLIQUE POPULAIRE DEMOCRATIQUE DE)"
|
||||
},
|
||||
{
|
||||
"nom": "COSTA RICA"
|
||||
},
|
||||
{
|
||||
"nom": "COTE D'IVOIRE"
|
||||
},
|
||||
{
|
||||
"nom": "CROATIE"
|
||||
},
|
||||
{
|
||||
"nom": "CUBA"
|
||||
},
|
||||
{
|
||||
"nom": "CURAÇAO"
|
||||
},
|
||||
{
|
||||
"nom": "DANEMARK"
|
||||
},
|
||||
{
|
||||
"nom": "DJIBOUTI"
|
||||
},
|
||||
{
|
||||
"nom": "DOMINICAINE (REPUBLIQUE)"
|
||||
},
|
||||
{
|
||||
"nom": "DOMINIQUE"
|
||||
},
|
||||
{
|
||||
"nom": "EGYPTE"
|
||||
},
|
||||
{
|
||||
"nom": "EL SALVADOR"
|
||||
},
|
||||
{
|
||||
"nom": "EMIRATS ARABES UNIS"
|
||||
},
|
||||
{
|
||||
"nom": "EQUATEUR"
|
||||
},
|
||||
{
|
||||
"nom": "ERYTHREE"
|
||||
},
|
||||
{
|
||||
"nom": "ESPAGNE"
|
||||
},
|
||||
{
|
||||
"nom": "ESTONIE"
|
||||
},
|
||||
{
|
||||
"nom": "ETATS MALAIS NON FEDERES"
|
||||
},
|
||||
{
|
||||
"nom": "ETATS-UNIS"
|
||||
},
|
||||
{
|
||||
"nom": "ETHIOPIE"
|
||||
},
|
||||
{
|
||||
"nom": "EX-REPUBLIQUE YOUGOSLAVE DE MACEDOINE"
|
||||
},
|
||||
{
|
||||
"nom": "FEROE (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "FIDJI"
|
||||
},
|
||||
{
|
||||
"nom": "FINLANDE"
|
||||
},
|
||||
{
|
||||
"nom": "GABON"
|
||||
},
|
||||
{
|
||||
"nom": "GAMBIE"
|
||||
},
|
||||
{
|
||||
"nom": "GEORGIE"
|
||||
},
|
||||
{
|
||||
"nom": "GEORGIE DU SUD ET LES ILES SANDWICH DU SUD"
|
||||
},
|
||||
{
|
||||
"nom": "GHANA"
|
||||
},
|
||||
{
|
||||
"nom": "GIBRALTAR"
|
||||
},
|
||||
{
|
||||
"nom": "GOA"
|
||||
},
|
||||
{
|
||||
"nom": "GRECE"
|
||||
},
|
||||
{
|
||||
"nom": "GRENADE"
|
||||
},
|
||||
{
|
||||
"nom": "GROENLAND"
|
||||
},
|
||||
{
|
||||
"nom": "GUADELOUPE"
|
||||
},
|
||||
{
|
||||
"nom": "GUAM"
|
||||
},
|
||||
{
|
||||
"nom": "GUATEMALA"
|
||||
},
|
||||
{
|
||||
"nom": "GUERNESEY"
|
||||
},
|
||||
{
|
||||
"nom": "GUINEE"
|
||||
},
|
||||
{
|
||||
"nom": "GUINEE EQUATORIALE"
|
||||
},
|
||||
{
|
||||
"nom": "GUINEE-BISSAU"
|
||||
},
|
||||
{
|
||||
"nom": "GUYANA"
|
||||
},
|
||||
{
|
||||
"nom": "GUYANE"
|
||||
},
|
||||
{
|
||||
"nom": "HAITI"
|
||||
},
|
||||
{
|
||||
"nom": "HAWAII (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "HEARD ET MACDONALD (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "HONDURAS"
|
||||
},
|
||||
{
|
||||
"nom": "HONG-KONG"
|
||||
},
|
||||
{
|
||||
"nom": "HONGRIE"
|
||||
},
|
||||
{
|
||||
"nom": "ILES PORTUGAISES DE L'OCEAN INDIEN"
|
||||
},
|
||||
{
|
||||
"nom": "INDE"
|
||||
},
|
||||
{
|
||||
"nom": "INDONESIE"
|
||||
},
|
||||
{
|
||||
"nom": "IRAN"
|
||||
},
|
||||
{
|
||||
"nom": "IRAQ"
|
||||
},
|
||||
{
|
||||
"nom": "IRLANDE, ou EIRE"
|
||||
},
|
||||
{
|
||||
"nom": "ISLANDE"
|
||||
},
|
||||
{
|
||||
"nom": "ISRAEL"
|
||||
},
|
||||
{
|
||||
"nom": "ITALIE"
|
||||
},
|
||||
{
|
||||
"nom": "JAMAIQUE"
|
||||
},
|
||||
{
|
||||
"nom": "JAPON"
|
||||
},
|
||||
{
|
||||
"nom": "JERSEY"
|
||||
},
|
||||
{
|
||||
"nom": "JORDANIE"
|
||||
},
|
||||
{
|
||||
"nom": "KAMTCHATKA"
|
||||
},
|
||||
{
|
||||
"nom": "KAZAKHSTAN"
|
||||
},
|
||||
{
|
||||
"nom": "KENYA"
|
||||
},
|
||||
{
|
||||
"nom": "KIRGHIZISTAN"
|
||||
},
|
||||
{
|
||||
"nom": "KIRIBATI"
|
||||
},
|
||||
{
|
||||
"nom": "KOSOVO"
|
||||
},
|
||||
{
|
||||
"nom": "KOWEIT"
|
||||
},
|
||||
{
|
||||
"nom": "LA REUNION"
|
||||
},
|
||||
{
|
||||
"nom": "LABRADOR"
|
||||
},
|
||||
{
|
||||
"nom": "LAOS"
|
||||
},
|
||||
{
|
||||
"nom": "LESOTHO"
|
||||
},
|
||||
{
|
||||
"nom": "LETTONIE"
|
||||
},
|
||||
{
|
||||
"nom": "LIBAN"
|
||||
},
|
||||
{
|
||||
"nom": "LIBERIA"
|
||||
},
|
||||
{
|
||||
"nom": "LIBYE"
|
||||
},
|
||||
{
|
||||
"nom": "LIECHTENSTEIN"
|
||||
},
|
||||
{
|
||||
"nom": "LITUANIE"
|
||||
},
|
||||
{
|
||||
"nom": "LUXEMBOURG"
|
||||
},
|
||||
{
|
||||
"nom": "MACAO"
|
||||
},
|
||||
{
|
||||
"nom": "MADAGASCAR"
|
||||
},
|
||||
{
|
||||
"nom": "MALAISIE"
|
||||
},
|
||||
{
|
||||
"nom": "MALAWI"
|
||||
},
|
||||
{
|
||||
"nom": "MALDIVES"
|
||||
},
|
||||
{
|
||||
"nom": "MALI"
|
||||
},
|
||||
{
|
||||
"nom": "MALOUINES, OU FALKLAND (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "MALTE"
|
||||
},
|
||||
{
|
||||
"nom": "MAN (ILE)"
|
||||
},
|
||||
{
|
||||
"nom": "MANDCHOURIE"
|
||||
},
|
||||
{
|
||||
"nom": "MARIANNES DU NORD (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "MAROC"
|
||||
},
|
||||
{
|
||||
"nom": "MARSHALL (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "MARTINIQUE"
|
||||
},
|
||||
{
|
||||
"nom": "MAURICE"
|
||||
},
|
||||
{
|
||||
"nom": "MAURITANIE"
|
||||
},
|
||||
{
|
||||
"nom": "MAYOTTE"
|
||||
},
|
||||
{
|
||||
"nom": "MEXIQUE"
|
||||
},
|
||||
{
|
||||
"nom": "MICRONESIE (ETATS FEDERES DE)"
|
||||
},
|
||||
{
|
||||
"nom": "MOLDAVIE"
|
||||
},
|
||||
{
|
||||
"nom": "MONACO"
|
||||
},
|
||||
{
|
||||
"nom": "MONGOLIE"
|
||||
},
|
||||
{
|
||||
"nom": "MONTENEGRO"
|
||||
},
|
||||
{
|
||||
"nom": "MONTSERRAT"
|
||||
},
|
||||
{
|
||||
"nom": "MOZAMBIQUE"
|
||||
},
|
||||
{
|
||||
"nom": "NAMIBIE"
|
||||
},
|
||||
{
|
||||
"nom": "NAURU"
|
||||
},
|
||||
{
|
||||
"nom": "NEPAL"
|
||||
},
|
||||
{
|
||||
"nom": "NICARAGUA"
|
||||
},
|
||||
{
|
||||
"nom": "NIGER"
|
||||
},
|
||||
{
|
||||
"nom": "NIGERIA"
|
||||
},
|
||||
{
|
||||
"nom": "NIUE"
|
||||
},
|
||||
{
|
||||
"nom": "NORFOLK (ILE)"
|
||||
},
|
||||
{
|
||||
"nom": "NORVEGE"
|
||||
},
|
||||
{
|
||||
"nom": "NOUVELLE-CALEDONIE"
|
||||
},
|
||||
{
|
||||
"nom": "NOUVELLE-ZELANDE"
|
||||
},
|
||||
{
|
||||
"nom": "OCEAN INDIEN (TERRITOIRE BRITANNIQUE DE L')"
|
||||
},
|
||||
{
|
||||
"nom": "OMAN"
|
||||
},
|
||||
{
|
||||
"nom": "OUGANDA"
|
||||
},
|
||||
{
|
||||
"nom": "OUZBEKISTAN"
|
||||
},
|
||||
{
|
||||
"nom": "PAKISTAN"
|
||||
},
|
||||
{
|
||||
"nom": "PALAOS (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "PALESTINE (Etat de)"
|
||||
},
|
||||
{
|
||||
"nom": "PANAMA"
|
||||
},
|
||||
{
|
||||
"nom": "PAPOUASIE-NOUVELLE-GUINEE"
|
||||
},
|
||||
{
|
||||
"nom": "PARAGUAY"
|
||||
},
|
||||
{
|
||||
"nom": "PAYS-BAS"
|
||||
},
|
||||
{
|
||||
"nom": "PEROU"
|
||||
},
|
||||
{
|
||||
"nom": "PHILIPPINES"
|
||||
},
|
||||
{
|
||||
"nom": "PITCAIRN (ILE)"
|
||||
},
|
||||
{
|
||||
"nom": "POLOGNE"
|
||||
},
|
||||
{
|
||||
"nom": "POLYNESIE FRANCAISE"
|
||||
},
|
||||
{
|
||||
"nom": "PORTO RICO"
|
||||
},
|
||||
{
|
||||
"nom": "PORTUGAL"
|
||||
},
|
||||
{
|
||||
"nom": "POSSESSIONS BRITANNIQUES AU PROCHE-ORIENT"
|
||||
},
|
||||
{
|
||||
"nom": "PRESIDES"
|
||||
},
|
||||
{
|
||||
"nom": "PROVINCES ESPAGNOLES D'AFRIQUE"
|
||||
},
|
||||
{
|
||||
"nom": "QATAR"
|
||||
},
|
||||
{
|
||||
"nom": "REPUBLIQUE DEMOCRATIQUE ALLEMANDE"
|
||||
},
|
||||
{
|
||||
"nom": "REPUBLIQUE FEDERALE D'ALLEMAGNE"
|
||||
},
|
||||
{
|
||||
"nom": "ROUMANIE"
|
||||
},
|
||||
{
|
||||
"nom": "ROYAUME-UNI"
|
||||
},
|
||||
{
|
||||
"nom": "RUSSIE"
|
||||
},
|
||||
{
|
||||
"nom": "RWANDA"
|
||||
},
|
||||
{
|
||||
"nom": "SAHARA OCCIDENTAL"
|
||||
},
|
||||
{
|
||||
"nom": "SAINT-BARTHELEMY"
|
||||
},
|
||||
{
|
||||
"nom": "SAINT-CHRISTOPHE-ET-NIEVES"
|
||||
},
|
||||
{
|
||||
"nom": "SAINT-MARIN"
|
||||
},
|
||||
{
|
||||
"nom": "SAINT-MARTIN"
|
||||
},
|
||||
{
|
||||
"nom": "SAINT-MARTIN (PARTIE NEERLANDAISE)"
|
||||
},
|
||||
{
|
||||
"nom": "SAINT-PIERRE-ET-MIQUELON"
|
||||
},
|
||||
{
|
||||
"nom": "SAINT-VINCENT-ET-LES GRENADINES"
|
||||
},
|
||||
{
|
||||
"nom": "SAINTE HELENE, ASCENSION ET TRISTAN DA CUNHA"
|
||||
},
|
||||
{
|
||||
"nom": "SAINTE-LUCIE"
|
||||
},
|
||||
{
|
||||
"nom": "SALOMON (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "SAMOA AMERICAINES"
|
||||
},
|
||||
{
|
||||
"nom": "SAMOA OCCIDENTALES"
|
||||
},
|
||||
{
|
||||
"nom": "SAO TOME-ET-PRINCIPE"
|
||||
},
|
||||
{
|
||||
"nom": "SENEGAL"
|
||||
},
|
||||
{
|
||||
"nom": "SERBIE"
|
||||
},
|
||||
{
|
||||
"nom": "SEYCHELLES"
|
||||
},
|
||||
{
|
||||
"nom": "SIBERIE"
|
||||
},
|
||||
{
|
||||
"nom": "SIERRA LEONE"
|
||||
},
|
||||
{
|
||||
"nom": "SINGAPOUR"
|
||||
},
|
||||
{
|
||||
"nom": "SLOVAQUIE"
|
||||
},
|
||||
{
|
||||
"nom": "SLOVENIE"
|
||||
},
|
||||
{
|
||||
"nom": "SOMALIE"
|
||||
},
|
||||
{
|
||||
"nom": "SOUDAN"
|
||||
},
|
||||
{
|
||||
"nom": "SOUDAN ANGLO-EGYPTIEN, KENYA, OUGANDA"
|
||||
},
|
||||
{
|
||||
"nom": "SOUDAN DU SUD"
|
||||
},
|
||||
{
|
||||
"nom": "SRI LANKA"
|
||||
},
|
||||
{
|
||||
"nom": "SUEDE"
|
||||
},
|
||||
{
|
||||
"nom": "SUISSE"
|
||||
},
|
||||
{
|
||||
"nom": "SURINAME"
|
||||
},
|
||||
{
|
||||
"nom": "SVALBARD et ILE JAN MAYEN"
|
||||
},
|
||||
{
|
||||
"nom": "SWAZILAND"
|
||||
},
|
||||
{
|
||||
"nom": "SYRIE"
|
||||
},
|
||||
{
|
||||
"nom": "TADJIKISTAN"
|
||||
},
|
||||
{
|
||||
"nom": "TAIWAN"
|
||||
},
|
||||
{
|
||||
"nom": "TANGER"
|
||||
},
|
||||
{
|
||||
"nom": "TANZANIE"
|
||||
},
|
||||
{
|
||||
"nom": "TCHAD"
|
||||
},
|
||||
{
|
||||
"nom": "TCHECOSLOVAQUIE"
|
||||
},
|
||||
{
|
||||
"nom": "TCHEQUE (REPUBLIQUE)"
|
||||
},
|
||||
{
|
||||
"nom": "TERR. DES ETATS-UNIS D'AMERIQUE EN AMERIQUE"
|
||||
},
|
||||
{
|
||||
"nom": "TERR. DES ETATS-UNIS D'AMERIQUE EN OCEANIE"
|
||||
},
|
||||
{
|
||||
"nom": "TERR. DU ROYAUME-UNI DANS L'ATLANTIQUE SUD"
|
||||
},
|
||||
{
|
||||
"nom": "TERRE-NEUVE"
|
||||
},
|
||||
{
|
||||
"nom": "TERRES AUSTRALES FRANCAISES"
|
||||
},
|
||||
{
|
||||
"nom": "TERRITOIRES DU ROYAUME-UNI AUX ANTILLES"
|
||||
},
|
||||
{
|
||||
"nom": "THAILANDE"
|
||||
},
|
||||
{
|
||||
"nom": "TIMOR ORIENTAL"
|
||||
},
|
||||
{
|
||||
"nom": "TOGO"
|
||||
},
|
||||
{
|
||||
"nom": "TOKELAU"
|
||||
},
|
||||
{
|
||||
"nom": "TONGA"
|
||||
},
|
||||
{
|
||||
"nom": "TRINITE-ET-TOBAGO"
|
||||
},
|
||||
{
|
||||
"nom": "TUNISIE"
|
||||
},
|
||||
{
|
||||
"nom": "TURKESTAN RUSSE"
|
||||
},
|
||||
{
|
||||
"nom": "TURKMENISTAN"
|
||||
},
|
||||
{
|
||||
"nom": "TURKS ET CAIQUES (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "TURQUIE"
|
||||
},
|
||||
{
|
||||
"nom": "TURQUIE D'EUROPE"
|
||||
},
|
||||
{
|
||||
"nom": "TUVALU"
|
||||
},
|
||||
{
|
||||
"nom": "UKRAINE"
|
||||
},
|
||||
{
|
||||
"nom": "URUGUAY"
|
||||
},
|
||||
{
|
||||
"nom": "VANUATU"
|
||||
},
|
||||
{
|
||||
"nom": "VATICAN, ou SAINT-SIEGE"
|
||||
},
|
||||
{
|
||||
"nom": "VENEZUELA"
|
||||
},
|
||||
{
|
||||
"nom": "VIERGES BRITANNIQUES (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "VIERGES DES ETATS-UNIS (ILES)"
|
||||
},
|
||||
{
|
||||
"nom": "VIET NAM"
|
||||
},
|
||||
{
|
||||
"nom": "VIET NAM DU NORD"
|
||||
},
|
||||
{
|
||||
"nom": "VIET NAM DU SUD"
|
||||
},
|
||||
{
|
||||
"nom": "WALLIS-ET-FUTUNA"
|
||||
},
|
||||
{
|
||||
"nom": "YEMEN"
|
||||
},
|
||||
{
|
||||
"nom": "YEMEN (REPUBLIQUE ARABE DU)"
|
||||
},
|
||||
{
|
||||
"nom": "YEMEN DEMOCRATIQUE"
|
||||
},
|
||||
{
|
||||
"nom": "ZAMBIE"
|
||||
},
|
||||
{
|
||||
"nom": "ZANZIBAR"
|
||||
},
|
||||
{
|
||||
"nom": "ZIMBABWE"
|
||||
}
|
||||
]
|
Loading…
Reference in a new issue