<?xml version="1.0" encoding="UTF-8"?>
<document>
 <LimeSurveyDocType>Survey</LimeSurveyDocType>
 <DBVersion>359</DBVersion>
 <languages>
  <language>fr</language>
 </languages>
 <groups>
  <fields>
   <fieldname>gid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>group_name</fieldname>
   <fieldname>group_order</fieldname>
   <fieldname>description</fieldname>
   <fieldname>language</fieldname>
   <fieldname>randomization_group</fieldname>
   <fieldname>grelevance</fieldname>
  </fields>
  <rows>
   <row>
    <gid><![CDATA[14391]]></gid>
    <sid><![CDATA[883565]]></sid>
    <group_name><![CDATA[PROCESVERBAL]]></group_name>
    <group_order><![CDATA[1]]></group_order>
    <description><![CDATA[<h3 style="font-style:italic;"><strong>Désignation des représentants des parents d'élèves</strong></h3>

<h4 style="color:#aaaaaa;font-style:italic;"><strong>Procès verbal</strong></h4>
]]></description>
    <language><![CDATA[fr]]></language>
    <randomization_group/>
    <grelevance/>
   </row>
  </rows>
 </groups>
 <questions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
   <fieldname>modulename</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[176605]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[NBLISTES]]></title>
    <question><![CDATA[<strong>Combien de listes souhaitez-vousrenseigner ? </strong>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[Y]]></mandatory>
    <question_order><![CDATA[0]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176606]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[;]]></type>
    <title><![CDATA[LISTES]]></title>
    <question><![CDATA[<big><span style="color:#2980b9;"><strong>Résultats obtenus par les listes de parents d'élèves</strong><b>.</b></span></big>
<p><script type="text/javascript" charset="utf-8">
$(document).ready(function() {

   // A function to add or remove rows of an Array (Multi Flexible)(Text) question
	function varLengthArray(qID) {
		
		if ($('#question'+qID+'').length > 0) {
		    
			// The HTML content of the Add/Remove elements - modify as you wish
			var addContent = 'Ajouter une liste';
			var removeContent = 'Supprimer une liste';

			// Create the Add and Remove elements & insert them
			var el1 = document.createElement('div');
			el1.setAttribute('id','addButton'+qID);
			document.body.appendChild(el1);
			var el2 = document.createElement('div');
			el2.setAttribute('id','removeButton'+qID);
			document.body.appendChild(el2);

			// Move them to after the array
			$( 'div#addButton'+qID ).appendTo($( '#question' + qID + ' table.ls-answers' ).parent());
			$( 'div#removeButton'+qID ).appendTo($( '#question' + qID + ' table.ls-answers' ).parent());

			// Insert their HTML
			$( 'div#addButton'+qID ).html( addContent );
			$( 'div#removeButton'+qID ).html( removeContent );

			// Style the elements - you can modify here if you wish
			$( 'div#addButton'+qID ).css({
				'margin':'10px 0 0 10px',
				'padding':'2px',
				'padding-left':'10px',
				'padding-right':'10px',
				'text-align':'center',
				'font-weight':'1bold',
                'font-size':'10pt',
				'width':'auto',
				'cursor':'pointer',
				'float':'left',
                'background-color':'cyan',
                'border-radius':'3px'
			});

			$( 'div#removeButton'+qID ).css({
				'margin':'10px 0 0 10px',
				'padding':'2px',
				'padding-left':'10px',
				'padding-right':'10px',
				'text-align':'center',
				'font-weight':'1bold',
                'font-size':'10pt',
				'width':'auto',
				'cursor':'pointer',
				'float':'left',
                'background-color':'lightgray',
                'border': '1px solid red',
                'border-radius':'3px'
			});

			// Initially hide the Remove element
			$( 'div#removeButton'+qID ).hide();

			// Call the functions below when clicked
			$( 'div#addButton'+qID ).click(function (event) {
				addRow(qID);
			});
			$( 'div#removeButton'+qID ).click(function (event) {
				removeRow(qID);
			});

			// Function to add a row, also shows the Remove element and hides the
			//Add element if all rows are shown
			function addRow(qID) {
				var arrayRow = '#question' + qID + ' table.ls-answers tr.subquestion-list';
				var rowCount = $( arrayRow ).size() - 1;
				$( arrayRow + '[name="hidden"]:first' ).attr('name', 'visible').show();
				$( 'div#removeButton'+qID ).show();
				if ( $( arrayRow + ':eq(' + rowCount + ')' ).attr('name') == 'visible' )  {
					$( 'div#addButton'+qID ).hide();
				}
			}

			// Function to remove a row, also clears the contents of the removed row,
			// shows the Add element if the last row is hidden and hides the Remove
			// element if only the first row is shown
			function removeRow(qID) {
				var arrayRow = '#question' + qID + ' table.ls-answers tr.subquestion-list';
				var rowCount = $( arrayRow ).size() - 1;
				$( arrayRow + '[name="visible"]:last input[type="text"]' ).val('');
                $( arrayRow + '[name="visible"]:last .inserted-select').val('');
				$( arrayRow + '[name="visible"]:last' ).attr('name', 'hidden').hide();
				$( 'div#addButton'+qID ).show();
				if ( $( arrayRow + ':eq(1)' ).attr('name') == 'hidden' )  {
					$( 'div#removeButton'+qID ).hide();
				}
			}

			// Just some initialization stuff
			var arrayRow = '#question' + qID + ' table.ls-answers tr.subquestion-list';
			var rowCount = '';

			// Initially hide all except first row or any rows with populated inputs
			$( arrayRow ).each(function(i) {
				if ( i > 0 ) {
					// We also need to give the hidden rows a name cause IE doesn't
					// recognize jQuery :visible selector consistently
					$( this ).attr('name', 'hidden').hide();

					$('input[type=text]', this).each(function(i) {
						if ($(this).attr('value') != '') {
							//$(this).parents('tbody:eq(0)').attr('name', 'visible').show();
                          	$(this).closest('tr.subquestion-list').attr('name', 'visible').show();
							$( 'div#removeButton'+qID ).show();
						}
					});
					rowCount = i;
				}
			});
		}
    }

	// Call the function with a question ID
	//varLengthArray({{QID}});
 // varLengthArray({QID});
});  

	$(document).on('ready pjax:scriptcomplete',function(){
	//	var thisQuestion = $('#question{({QID})}');
      var thisQuestion = $('#question{QID}');
	
		// Insert selects
		$('.answer-item.answer_cell_AFFILIATION', thisQuestion).addClass('with-select').append('<select class="inserted-select form-control list-question-select">\
<option value="AUTRES">AUTRES</option>\
<option value="ROUGE">ROUGE</option>\
<option value="BLEU">BLEU</option>\
<option value="VERT">VERT</option>\
<option value="JAUNE">JAUNE</option>\
<option value="MARRON">MARRON</option>\
<option value="ORANGE">ORANGE</option>\
<option value="GRIS">GRIS</option>\
<option value="NOIR">NOIR</option>\
<option value="INDIGO">INDIGO</option>\
<option value="BRILLANT">BRILLANT</option>\
</select>'); 

	
		// Listeners
		$('.inserted-select', thisQuestion).on('change', function(i) {
			if($(this).val() != '') {
				$(this).closest('.answer-item').find('input:text').val($.trim($('option:selected', this).text())).trigger('change');
			}
			else {
				$(this).closest('.answer-item').find('input:text').val('').trigger('change');
			}
		});
					
		// Returning to page
		$('.with-select input:text', thisQuestion).each(function(i) {
			var thisCell = $(this).closest('.answer-item');
			var inputText = $.trim($(this).val());
			var selectval = $('select.inserted-select option', thisCell).filter(function () { return $(this).html() == inputText; }).val();
			$('select.inserted-select', thisCell).val(selectval);
		});
	
		// Clean-up styles
		$('select.inserted-select', thisQuestion).css({
			'max-width': '100%'
		});
		$('.with-select input:text', thisQuestion).css({
			'position': 'absolute',
			'left': '-9999em'
		});
	});
  </script></p>
]]></question>
    <preg/>
    <help><![CDATA[<p>(1) Nombre de voix obtenues par les listes en présence (après prise en compte éventuelle de la clé de répartition pour une liste commune)</p>

<p>(2) Nombre de sièges obtenus (après prise en compte éventuelle de la clé de répartition pour une liste commune)</p>
]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176607]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[*]]></type>
    <title><![CDATA[CONTROLES]]></title>
    <question><![CDATA[<p><strong>Numéro de question: </strong> {QID}</p>
<strong>Nombre de cases;</strong> {count(that.LISTES.shown)}

<p><strong>Nombre de réponses:</strong> {count(that.LISTES.sq_AFFILIATION.NAOK)}</p>

<p><strong>Complétude des réponses:</strong> {count(that.LISTES.sq_NOM.NAOK) ==count(that.LISTES.sq_VOIX.NAOK) AND count(that.LISTES.sq_AFFILIATION.NAOK)==count(that.LISTES.sq_VOIX.NAOK)}</p>

<p><strong>Nb cases:</strong> {count(that.LISTES.NAOK)}</p>
<strong>Voix hors plage:</strong> {countifop('lt', 0, that.LISTES.sq_VOIX.NAOK)}

<p><strong>Sièges hors plage:</strong> {countifop('lt', 0, that.LISTES.sq_SIEGES.NAOK)}</p>

<p><strong>Voix ou Sièges hors plages</strong>:  {sum(countifop('lt', 0, that.LISTES.sq_VOIX.NAOK),countifop('lt', 0, that.LISTES.sq_SIEGES.NAOK))}</p>

<p><strong>Total voix:</strong>: {sum(that.LISTES.sq_VOIX.NAOK)}</p>

<p><strong>Total sièges:</strong>: {sum(that.LISTES.sq_SIEGES.NAOK)}</p>
]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
    <modulename/>
   </row>
  </rows>
 </questions>
 <subquestions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
   <fieldname>modulename</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[176608]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ01]]></title>
    <question><![CDATA[Liste n°1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 0]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176609]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[NOM]]></title>
    <question><![CDATA[Nom de la liste présentée ]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176610]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ02]]></title>
    <question><![CDATA[Liste n°2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 1]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176611]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[AFFILIATION]]></title>
    <question><![CDATA[Affiliation de la liste]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176612]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ03]]></title>
    <question><![CDATA[Liste n°3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 2]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176613]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[VOIX]]></title>
    <question><![CDATA[Nombre de voix obtenues (1)]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176614]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ04]]></title>
    <question><![CDATA[Liste n°4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 3]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176615]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SIEGES]]></title>
    <question><![CDATA[Nombre de sièges obtenus (2)]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176616]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ05]]></title>
    <question><![CDATA[Liste n°5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 4]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176617]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ06]]></title>
    <question><![CDATA[Liste n°6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 5]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176618]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ07]]></title>
    <question><![CDATA[Liste n°7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 6]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176619]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ08]]></title>
    <question><![CDATA[Liste n°8]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 7]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176620]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ09]]></title>
    <question><![CDATA[Liste n°9]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 8]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176621]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ10]]></title>
    <question><![CDATA[Liste n°10]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 9]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176622]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ11]]></title>
    <question><![CDATA[Liste n°11]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[11]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 10]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176623]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ12]]></title>
    <question><![CDATA[Liste n°12]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[12]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 11]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176624]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ13]]></title>
    <question><![CDATA[Liste n°13]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[13]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 12]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176625]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ14]]></title>
    <question><![CDATA[Liste n°14]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[14]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 13]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176626]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ15]]></title>
    <question><![CDATA[Liste n°15]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[15]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 14]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176627]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ16]]></title>
    <question><![CDATA[Liste n°16]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[16]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 15]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176628]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ17]]></title>
    <question><![CDATA[Liste n°17]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[17]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 16]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176629]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ18]]></title>
    <question><![CDATA[Liste n°18]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[18]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 17]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176630]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ19]]></title>
    <question><![CDATA[Liste n°19]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[19]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 18]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176631]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ20]]></title>
    <question><![CDATA[Liste n°20]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[20]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 19]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176632]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ21]]></title>
    <question><![CDATA[Liste n°21]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[21]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 20]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176633]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ22]]></title>
    <question><![CDATA[Liste n°22]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[22]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 21]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176634]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ23]]></title>
    <question><![CDATA[Liste n°23]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[23]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 22]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176635]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ24]]></title>
    <question><![CDATA[Liste n°24]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[24]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 23]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176636]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ25]]></title>
    <question><![CDATA[Liste n°25]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[25]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 24]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176637]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ26]]></title>
    <question><![CDATA[Liste n°26]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[26]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 25]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176638]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ27]]></title>
    <question><![CDATA[Liste n°27]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[27]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 26]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176639]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ28]]></title>
    <question><![CDATA[Liste n°28]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[28]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 27]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176640]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ29]]></title>
    <question><![CDATA[Liste n°29]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[29]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 28]]></relevance>
    <modulename/>
   </row>
   <row>
    <qid><![CDATA[176641]]></qid>
    <parent_qid><![CDATA[176606]]></parent_qid>
    <sid><![CDATA[883565]]></sid>
    <gid><![CDATA[14391]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[SQ30]]></title>
    <question><![CDATA[Liste n°30]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[30]]></question_order>
    <language><![CDATA[fr]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[NBLISTES.NAOK > 29]]></relevance>
    <modulename/>
   </row>
  </rows>
 </subquestions>
 <question_attributes>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>attribute</fieldname>
   <fieldname>value</fieldname>
   <fieldname>language</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[176605]]></qid>
    <attribute><![CDATA[input_size]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[176605]]></qid>
    <attribute><![CDATA[maximum_chars]]></attribute>
    <value><![CDATA[2]]></value>
   </row>
   <row>
    <qid><![CDATA[176605]]></qid>
    <attribute><![CDATA[max_num_value_n]]></attribute>
    <value><![CDATA[30]]></value>
   </row>
   <row>
    <qid><![CDATA[176605]]></qid>
    <attribute><![CDATA[min_num_value_n]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[176605]]></qid>
    <attribute><![CDATA[num_value_int_only]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[176605]]></qid>
    <attribute><![CDATA[text_input_width]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[176606]]></qid>
    <attribute><![CDATA[answer_width]]></attribute>
    <value><![CDATA[10]]></value>
   </row>
   <row>
    <qid><![CDATA[176606]]></qid>
    <attribute><![CDATA[em_validation_q]]></attribute>
    <value><![CDATA[(!is_empty(self.sq_SQ01_NOM)) and (!is_empty(self.sq_SQ01_AFFILIATION)) and (!is_empty(self.sq_SQ01_VOIX)) and 
(!is_empty(self.sq_SQ01_SIEGES)) AND
 (countifop('lt', 0, self.sq_SIEGES.NAOK) == 0) and (countifop('lt', 0, self.sq_VOIX.NAOK) == 0)
]]></value>
   </row>
   <row>
    <qid><![CDATA[176606]]></qid>
    <attribute><![CDATA[em_validation_q_tip]]></attribute>
    <value><![CDATA[{if((!is_empty(self.sq_SQ01_NOM)) and (!is_empty(self.sq_SQ01_AFFILIATION)) and (!is_empty(self.sq_SQ01_VOIX)) and 
(!is_empty(self.sq_SQ01_SIEGES)) ,'','La première ligne est obligatoires <br />')}
{if(countifop('lt', 0, self.sq_VOIX.NAOK) == 0,'','Le nombre de voix ne peut pas être négatif  </br>')}
{if(countifop('lt', 0, self.sq_SIEGES.NAOK) == 0,'','Le nombre de sièges ne peut pas être négatif </br>')}


]]></value>
    <language><![CDATA[fr]]></language>
   </row>
   <row>
    <qid><![CDATA[176606]]></qid>
    <attribute><![CDATA[input_size]]></attribute>
    <value><![CDATA[25]]></value>
   </row>
   <row>
    <qid><![CDATA[176606]]></qid>
    <attribute><![CDATA[max_answers]]></attribute>
    <value><![CDATA[NBLISTES * 4]]></value>
   </row>
   <row>
    <qid><![CDATA[176606]]></qid>
    <attribute><![CDATA[maximum_chars]]></attribute>
    <value><![CDATA[150]]></value>
   </row>
   <row>
    <qid><![CDATA[176606]]></qid>
    <attribute><![CDATA[min_answers]]></attribute>
    <value><![CDATA[NBLISTES * 4]]></value>
   </row>
   <row>
    <qid><![CDATA[176607]]></qid>
    <attribute><![CDATA[numbers_only]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
  </rows>
 </question_attributes>
 <surveys>
  <fields>
   <fieldname>sid</fieldname>
   <fieldname>admin</fieldname>
   <fieldname>expires</fieldname>
   <fieldname>startdate</fieldname>
   <fieldname>adminemail</fieldname>
   <fieldname>anonymized</fieldname>
   <fieldname>faxto</fieldname>
   <fieldname>format</fieldname>
   <fieldname>savetimings</fieldname>
   <fieldname>template</fieldname>
   <fieldname>language</fieldname>
   <fieldname>additional_languages</fieldname>
   <fieldname>datestamp</fieldname>
   <fieldname>usecookie</fieldname>
   <fieldname>allowregister</fieldname>
   <fieldname>allowsave</fieldname>
   <fieldname>autonumber_start</fieldname>
   <fieldname>autoredirect</fieldname>
   <fieldname>allowprev</fieldname>
   <fieldname>printanswers</fieldname>
   <fieldname>ipaddr</fieldname>
   <fieldname>refurl</fieldname>
   <fieldname>publicstatistics</fieldname>
   <fieldname>publicgraphs</fieldname>
   <fieldname>listpublic</fieldname>
   <fieldname>htmlemail</fieldname>
   <fieldname>sendconfirmation</fieldname>
   <fieldname>tokenanswerspersistence</fieldname>
   <fieldname>assessments</fieldname>
   <fieldname>usecaptcha</fieldname>
   <fieldname>usetokens</fieldname>
   <fieldname>bounce_email</fieldname>
   <fieldname>attributedescriptions</fieldname>
   <fieldname>emailresponseto</fieldname>
   <fieldname>emailnotificationto</fieldname>
   <fieldname>tokenlength</fieldname>
   <fieldname>showxquestions</fieldname>
   <fieldname>showgroupinfo</fieldname>
   <fieldname>shownoanswer</fieldname>
   <fieldname>showqnumcode</fieldname>
   <fieldname>bouncetime</fieldname>
   <fieldname>bounceprocessing</fieldname>
   <fieldname>bounceaccounttype</fieldname>
   <fieldname>bounceaccounthost</fieldname>
   <fieldname>bounceaccountpass</fieldname>
   <fieldname>bounceaccountencryption</fieldname>
   <fieldname>bounceaccountuser</fieldname>
   <fieldname>showwelcome</fieldname>
   <fieldname>showprogress</fieldname>
   <fieldname>navigationdelay</fieldname>
   <fieldname>nokeyboard</fieldname>
   <fieldname>alloweditaftercompletion</fieldname>
   <fieldname>googleanalyticsstyle</fieldname>
   <fieldname>googleanalyticsapikey</fieldname>
   <fieldname>questionindex</fieldname>
   <fieldname>gsid</fieldname>
   <fieldname>showsurveypolicynotice</fieldname>
  </fields>
  <rows>
   <row>
    <sid><![CDATA[883565]]></sid>
    <admin><![CDATA[Limesurvey]]></admin>
    <adminemail><![CDATA[nepasrepondre@limesurvey.fr]]></adminemail>
    <anonymized><![CDATA[N]]></anonymized>
    <faxto/>
    <format><![CDATA[G]]></format>
    <savetimings><![CDATA[N]]></savetimings>
    <template><![CDATA[fruity]]></template>
    <language><![CDATA[fr]]></language>
    <additional_languages/>
    <datestamp><![CDATA[N]]></datestamp>
    <usecookie><![CDATA[N]]></usecookie>
    <allowregister><![CDATA[N]]></allowregister>
    <allowsave><![CDATA[Y]]></allowsave>
    <autonumber_start><![CDATA[0]]></autonumber_start>
    <autoredirect><![CDATA[N]]></autoredirect>
    <allowprev><![CDATA[N]]></allowprev>
    <printanswers><![CDATA[N]]></printanswers>
    <ipaddr><![CDATA[N]]></ipaddr>
    <refurl><![CDATA[N]]></refurl>
    <publicstatistics><![CDATA[N]]></publicstatistics>
    <publicgraphs><![CDATA[N]]></publicgraphs>
    <listpublic><![CDATA[N]]></listpublic>
    <htmlemail><![CDATA[Y]]></htmlemail>
    <sendconfirmation><![CDATA[Y]]></sendconfirmation>
    <tokenanswerspersistence><![CDATA[N]]></tokenanswerspersistence>
    <assessments><![CDATA[N]]></assessments>
    <usecaptcha><![CDATA[N]]></usecaptcha>
    <usetokens><![CDATA[N]]></usetokens>
    <bounce_email><![CDATA[nepasrepondre@limesurvey.fr]]></bounce_email>
    <emailresponseto/>
    <emailnotificationto/>
    <tokenlength><![CDATA[15]]></tokenlength>
    <showxquestions><![CDATA[Y]]></showxquestions>
    <showgroupinfo><![CDATA[B]]></showgroupinfo>
    <shownoanswer><![CDATA[Y]]></shownoanswer>
    <showqnumcode><![CDATA[X]]></showqnumcode>
    <bounceprocessing><![CDATA[N]]></bounceprocessing>
    <showwelcome><![CDATA[Y]]></showwelcome>
    <showprogress><![CDATA[Y]]></showprogress>
    <navigationdelay><![CDATA[0]]></navigationdelay>
    <nokeyboard><![CDATA[N]]></nokeyboard>
    <alloweditaftercompletion><![CDATA[N]]></alloweditaftercompletion>
    <googleanalyticsstyle/>
    <googleanalyticsapikey/>
    <questionindex><![CDATA[0]]></questionindex>
    <gsid><![CDATA[1]]></gsid>
    <showsurveypolicynotice><![CDATA[0]]></showsurveypolicynotice>
   </row>
  </rows>
 </surveys>
 <surveys_languagesettings>
  <fields>
   <fieldname>surveyls_survey_id</fieldname>
   <fieldname>surveyls_language</fieldname>
   <fieldname>surveyls_title</fieldname>
   <fieldname>surveyls_description</fieldname>
   <fieldname>surveyls_welcometext</fieldname>
   <fieldname>surveyls_endtext</fieldname>
   <fieldname>surveyls_url</fieldname>
   <fieldname>surveyls_urldescription</fieldname>
   <fieldname>surveyls_email_invite_subj</fieldname>
   <fieldname>surveyls_email_invite</fieldname>
   <fieldname>surveyls_email_remind_subj</fieldname>
   <fieldname>surveyls_email_remind</fieldname>
   <fieldname>surveyls_email_register_subj</fieldname>
   <fieldname>surveyls_email_register</fieldname>
   <fieldname>surveyls_email_confirm_subj</fieldname>
   <fieldname>surveyls_email_confirm</fieldname>
   <fieldname>surveyls_dateformat</fieldname>
   <fieldname>surveyls_attributecaptions</fieldname>
   <fieldname>email_admin_notification_subj</fieldname>
   <fieldname>email_admin_notification</fieldname>
   <fieldname>email_admin_responses_subj</fieldname>
   <fieldname>email_admin_responses</fieldname>
   <fieldname>surveyls_numberformat</fieldname>
   <fieldname>attachments</fieldname>
   <fieldname>surveyls_policy_notice</fieldname>
   <fieldname>surveyls_policy_error</fieldname>
   <fieldname>surveyls_policy_notice_label</fieldname>
  </fields>
  <rows>
   <row>
    <surveyls_survey_id><![CDATA[883565]]></surveyls_survey_id>
    <surveyls_language><![CDATA[fr]]></surveyls_language>
    <surveyls_title><![CDATA[rapport d"incident Liste des parents d'élèves]]></surveyls_title>
    <surveyls_description/>
    <surveyls_welcometext/>
    <surveyls_endtext/>
    <surveyls_url/>
    <surveyls_urldescription/>
    <surveyls_email_invite_subj><![CDATA[Invitation à participer à un questionnaire]]></surveyls_email_invite_subj>
    <surveyls_email_invite><![CDATA[Cher(e) {FIRSTNAME},<br />
<br />
Vous avez été invité(e) à participer à un questionnaire.<br />
<br />
Celui-ci est intitulé :<br />
"{SURVEYNAME}"<br />
<br />
"{SURVEYDESCRIPTION}"<br />
<br />
Pour participer, veuillez cliquer sur le lien ci-dessous.<br />
<br />
Cordialement,<br />
<br />
{ADMINNAME} ({ADMINEMAIL})<br />
<br />
----------------------------------------------<br />
Cliquez ici pour remplir ce questionnaire :<br />
{SURVEYURL}<br />
<br />
Si vous ne souhaitez pas participer à ce questionnaire et ne souhaitez plus recevoir aucune invitation, veuillez cliquer sur le lien suivant :<br />
{OPTOUTURL}<br />
<br />
Si vous êtes sur liste noire mais que vous voulez participer à ce questionnaire et recevoir les invitations, merci de cliquer sur le lien suivant :<br />
{OPTINURL}]]></surveyls_email_invite>
    <surveyls_email_remind_subj><![CDATA[Rappel pour participer à un questionnaire]]></surveyls_email_remind_subj>
    <surveyls_email_remind><![CDATA[Cher(e) {FIRSTNAME},<br />
<br />
Vous avez été invité(e) à participer à un questionnaire récemment.<br />
<br />
Nous avons pris en compte que vous n’avez pas encore complété le questionnaire, et nous vous rappelons que celui-ci est toujours disponible si vous souhaitez participer.<br />
<br />
Le questionnaire est intitulé :<br />
"{SURVEYNAME}"<br />
<br />
"{SURVEYDESCRIPTION}"<br />
<br />
Pour participer, veuillez cliquer sur le lien ci-dessous.<br />
<br />
Cordialement,<br />
<br />
{ADMINNAME} ({ADMINEMAIL})<br />
<br />
----------------------------------------------<br />
Cliquez ici pour faire le questionnaire :<br />
{SURVEYURL}<br />
<br />
Si vous ne souhaitez pas participer à ce questionnaire et ne souhaitez plus recevoir aucune invitation, veuillez cliquer sur le lien suivant :<br />
{OPTOUTURL}]]></surveyls_email_remind>
    <surveyls_email_register_subj><![CDATA[Confirmation d’enregistrement pour le questionnaire]]></surveyls_email_register_subj>
    <surveyls_email_register><![CDATA[Bonjour {FIRSTNAME},<br />
<br />
Vous (ou quelqu’un utilisant votre adresse électronique) vous êtes enregistré pour participer à un questionnaire en ligne intitulé {SURVEYNAME}.<br />
<br />
Pour compléter ce questionnaire, cliquez sur le lien suivant :<br />
{SURVEYURL}<br />
<br />
Si vous avez des questions à propos de ce questionnaire, ou si vous ne vous êtes pas enregistré pour participer à celui-ci et croyez que ce message est une erreur, veuillez contacter {ADMINNAME} à l’adresse {ADMINEMAIL}]]></surveyls_email_register>
    <surveyls_email_confirm_subj><![CDATA[Confirmation de votre participation à notre questionnaire]]></surveyls_email_confirm_subj>
    <surveyls_email_confirm><![CDATA[Bonjour {FIRSTNAME},<br />
<br />
Ce message vous confirme que vous avez complété le questionnaire intitulé {SURVEYNAME} et que votre réponse a été enregistrée. Merci pour votre participation.<br />
<br />
Si vous avez des questions à propos de ce message, veuillez contacter {ADMINNAME} à l’adresse {ADMINEMAIL}.<br />
<br />
Cordialement,<br />
<br />
{ADMINNAME}]]></surveyls_email_confirm>
    <surveyls_dateformat><![CDATA[5]]></surveyls_dateformat>
    <email_admin_notification_subj><![CDATA[Soumission de réponse pour le questionnaire {SURVEYNAME}]]></email_admin_notification_subj>
    <email_admin_notification><![CDATA[Bonjour,<br />
<br />
Une nouvelle réponse a été soumise pour votre questionnaire '{SURVEYNAME}'.<br />
<br />
Cliquez sur le lien suivant pour voir la réponse :<br />
{VIEWRESPONSEURL}<br />
<br />
Cliquez sur le lien suivant pour éditer la réponse :<br />
{EDITRESPONSEURL}<br />
<br />
Visualisez les statistiques en cliquant ici :<br />
{STATISTICSURL}]]></email_admin_notification>
    <email_admin_responses_subj><![CDATA[Soumission de réponse pour le questionnaire {SURVEYNAME} avec résultats]]></email_admin_responses_subj>
    <email_admin_responses><![CDATA[Bonjour,<br />
<br />
Une nouvelle réponse a été soumise pour votre questionnaire '{SURVEYNAME}'.<br />
<br />
Cliquez sur le lien suivant pour voir cette réponse :<br />
{VIEWRESPONSEURL}<br />
<br />
Cliquez sur le lien suivant pour éditer cette réponse individuelle :<br />
{EDITRESPONSEURL}<br />
<br />
Visualisez les statistiques en cliquant ici :<br />
{STATISTICSURL}<br />
<br />
<br />
Les réponses suivantes ont été données par le participant :<br />
{ANSWERTABLE}]]></email_admin_responses>
    <surveyls_numberformat><![CDATA[0]]></surveyls_numberformat>
   </row>
  </rows>
 </surveys_languagesettings>
 <themes>
  <theme>
   <sid>883565</sid>
   <template_name>fruity</template_name>
   <config>
    <options>inherit</options>
   </config>
  </theme>
  <theme>
   <sid>883565</sid>
   <template_name>Galileo</template_name>
   <config>
    <options>inherit</options>
   </config>
  </theme>
 </themes>
 <themes_inherited>
  <theme>
   <sid>883565</sid>
   <template_name>fruity</template_name>
   <config>
    <options>
     <ajaxmode>off</ajaxmode>
     <brandlogo>on</brandlogo>
     <brandlogofile>./files/logo.png</brandlogofile>
     <container>on</container>
     <backgroundimage>off</backgroundimage>
     <backgroundimagefile>./files/pattern.png</backgroundimagefile>
     <animatebody>off</animatebody>
     <bodyanimation>fadeInRight</bodyanimation>
     <bodyanimationduration>1.0</bodyanimationduration>
     <animatequestion>off</animatequestion>
     <questionanimation>flipInX</questionanimation>
     <questionanimationduration>1.0</questionanimationduration>
     <animatealert>off</animatealert>
     <alertanimation>shake</alertanimation>
     <alertanimationduration>1.0</alertanimationduration>
     <font>noto</font>
     <bodybackgroundcolor>#ffffff</bodybackgroundcolor>
     <fontcolor>#444444</fontcolor>
     <questionbackgroundcolor>#ffffff</questionbackgroundcolor>
     <questionborder>on</questionborder>
     <questioncontainershadow>on</questioncontainershadow>
     <checkicon>f00c</checkicon>
     <animatecheckbox>on</animatecheckbox>
     <checkboxanimation>rubberBand</checkboxanimation>
     <checkboxanimationduration>0.5</checkboxanimationduration>
     <animateradio>on</animateradio>
     <radioanimation>zoomIn</radioanimation>
     <radioanimationduration>0.3</radioanimationduration>
     <showpopups>1</showpopups>
     <zebrastriping>off</zebrastriping>
     <stickymatrixheaders>off</stickymatrixheaders>
     <greyoutselected>off</greyoutselected>
     <hideprivacyinfo>off</hideprivacyinfo>
     <crosshover>off</crosshover>
     <fixnumauto>off</fixnumauto>
    </options>
   </config>
  </theme>
  <theme>
   <sid>883565</sid>
   <template_name>Galileo</template_name>
   <config>
    <options>
     <brandlogo>on</brandlogo>
     <brandlogofile>upload/themes/survey/Galileo/files/logo.png</brandlogofile>
     <container>on</container>
     <backgroundimage>off</backgroundimage>
     <animatebody>off</animatebody>
     <bodyanimation>fadeInRight</bodyanimation>
     <bodyanimationduration>500</bodyanimationduration>
     <animatequestion>off</animatequestion>
     <questionanimation>flipInX</questionanimation>
     <questionanimationduration>500</questionanimationduration>
     <animatealert>off</animatealert>
     <alertanimation>shake</alertanimation>
     <alertanimationduration>500</alertanimationduration>
     <font>ubuntu</font>
     <bodybackgroundcolor>#ffffff</bodybackgroundcolor>
     <fontcolor>#444444</fontcolor>
     <questionbackgroundcolor>#ffffff</questionbackgroundcolor>
     <questionborder>on</questionborder>
     <questioncontainershadow>on</questioncontainershadow>
     <checkicon>f00c</checkicon>
     <animatecheckbox>on</animatecheckbox>
     <checkboxanimation>rubberBand</checkboxanimation>
     <checkboxanimationduration>500</checkboxanimationduration>
     <animateradio>on</animateradio>
     <radioanimation>zoomIn</radioanimation>
     <radioanimationduration>500</radioanimationduration>
     <zebrastriping>off</zebrastriping>
     <stickymatrixheaders>off</stickymatrixheaders>
     <greyoutselected>off</greyoutselected>
     <hideprivacyinfo>off</hideprivacyinfo>
     <crosshover>off</crosshover>
     <showpopups>1</showpopups>
     <fixnumauto>off</fixnumauto>
    </options>
   </config>
  </theme>
 </themes_inherited>
</document>
