Aller au contenu

Module:Infobox/Feu de forêt

Une page de Wikipédia, l'encyclopédie libre.
Ceci est une version archivée de cette page, en date du 27 janvier 2018 à 20:06 et modifiée en dernier par Tomo8 5 (discuter | contributions) (Syntaxe). Elle peut contenir des erreurs, des inexactitudes ou des contenus vandalisés non présents dans la version actuelle.

 Documentation[voir] [modifier] [historique] [purger]

Cette page définit un module d'infobox. Pour les conseils sur l'usage de ce module, voyez Modèle:Infobox Feu de forêt.


local location = require "Module:Infobox/Fonctions/Géolocalisation"
local general = require "Module:Infobox/Fonctions"
local wikidata = require "Module:Wikidata"
local building = require "Module:Infobox/Fonctions/Bâtiment" -- à passer vers /Géolocalisation
local localdata = require "Module:Infobox/Localdata"

return 
	{
	maincolor = '#CAA05D',
    parts =
    	{
			general.title(),
                        general.mainimage('Defaut.svg'),

			{type = 'table', 
				rows = 	{
					{type = 'row', label = 'Pays', value = 'pays', property = 'P17'},
                                        {type = 'row', label = 'Lieu', plurallabel = 'Lieux', value = 'lieu', property = 'P276'},
                                        {type = 'row', label = 'Localisation administrative', plurallabel = 'Localisations administratives', value = 'localisation administrative', property = 'P131'},

				}
                        },

                        {type = 'table',title='Statistiques',
                                rows = { 
                                       {type = 'row', label = 'Coût', value = 'coût des dommages', property = 'P2630'},
                                       {type = 'row', label = 'Date de début', value = 'date de début', property = 'P580'},
                                       {type = 'row', label = 'Date de fin', value = 'date de fin', property = 'P582'},
                                       {type = 'row', label = 'Superficie brûlée', value = 'superficie', property = 'P2046'},
                                       {type = 'row', label = 'Cause', value = 'cause', property = 'P828'},
                                       {type = 'row', label = 'Type de terrain', value = 'type de terrain'},
                                       {type = 'row', label = 'Immeubles détruits', value = 'immeubles détruits'},
                                       {type = 'row', label = 'Morts', value = 'décès', property = 'P1120'},  
                                       {type = 'row', label = 'Blessés', value = 'décès', property = 'P1339'},
                                }       
			},
		}
	}