/**
 * Affiche un modèle Information sur la page de téléchargement de fichiers ]
 * activé via ]
 */
$( function ( $ ) {
	if ( mw.config.get( 'wgCanonicalSpecialPageName' ) !== 'Upload' ) return;

	var $editbox = $( '#wpUploadDescription' );
	if ( !$editbox.length ) return;

	if ( $editbox.val() !== '' ) return;
	$editbox.val(
		  "{{Information\n"
		+ " | description = Indiquez ici toutes informations utiles pour comprendre ce que l'image représente\n"
		+ " | source      = Indiquez ici l'adresse web où a été trouvée l'image initialement\n"
		+ " | date        = \n"
		+ " | auteur      = \n"
		+ " | permission  = \n"
		+ "}}\n\n"
	);
} );