diff options
| -rw-r--r-- | Makefile.example | 3 | ||||
| -rw-r--r-- | ishtar_common/fixtures/initial_data-fr.json | 132 | 
2 files changed, 135 insertions, 0 deletions
| diff --git a/Makefile.example b/Makefile.example index 9fd739e9a..e930313e1 100644 --- a/Makefile.example +++ b/Makefile.example @@ -169,6 +169,9 @@ fixtures_common: fixtures_common_importers fixtures_geo  							ishtar_common.language \  							ishtar_common.documenttag \  							ishtar_common.documenttemplate \ +							ishtar_common.geoorigintype \ +							ishtar_common.geodatatype \ +							ishtar_common.geoprovidertype  	   > '../ishtar_common/fixtures/initial_data-'$(default_data)'.json'  fixtures_common_importers: diff --git a/ishtar_common/fixtures/initial_data-fr.json b/ishtar_common/fixtures/initial_data-fr.json index aa4c5bce4..f3c539d3c 100644 --- a/ishtar_common/fixtures/initial_data-fr.json +++ b/ishtar_common/fixtures/initial_data-fr.json @@ -1588,5 +1588,137 @@          "comment": "",          "available": true      } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Limites commune", +        "txt_idx": "town-limit", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Emprise de l'op\u00e9ration", +        "txt_idx": "operation-area", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Centre de l'op\u00e9ration", +        "txt_idx": "operation-center", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Limites de zone communale", +        "txt_idx": "area-limit", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Emprise du site", +        "txt_idx": "archaeologicalsite-area", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Centre du site", +        "txt_idx": "archaeologicalsite-center", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Contour d'unit\u00e9 d'enregistrement", +        "txt_idx": "contextrecord-outline", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Centre de l'unit\u00e9 d'enregistrement", +        "txt_idx": "contextrecord-center", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Contour d'mobilier d'origine", +        "txt_idx": "basefind-outline", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geodatatype", +    "fields": { +        "label": "Centre du mobilier d'origine", +        "txt_idx": "basefind-center", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geoprovidertype", +    "fields": { +        "label": "IGN", +        "txt_idx": "france-ign", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    } +}, +{ +    "model": "ishtar_common.geoorigintype", +    "fields": { +        "label": "Georéférencement", +        "txt_idx": "georeferencement", +        "comment": "", +        "available": true, +        "parent": null, +        "order": 10 +    }  }  ] | 
