2022-01-29 15:00:04 +01:00
|
|
|
<!-- nav bar -->
|
|
|
|
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="config"}
|
|
|
|
|
|
|
|
<h2>Configuration</h2>
|
|
|
|
|
|
|
|
{if $ok && !$form->hasErrors()}
|
|
|
|
<p class="block confirm">
|
|
|
|
La configuration a bien été enregistrée.
|
|
|
|
</p>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
{form_errors}
|
|
|
|
|
2022-02-25 15:51:48 +01:00
|
|
|
<form method="post" action="{$self_url}" enctype="multipart/form-data">
|
2022-01-29 15:00:04 +01:00
|
|
|
<fieldset>
|
2022-02-25 15:51:48 +01:00
|
|
|
<dl class="config">
|
|
|
|
<dt><label>Objet (but) de l'association</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
2022-03-03 14:15:48 +01:00
|
|
|
{input type="textarea" name="objet_asso" source=$plugin.config label="" required="required" cols="50" rows="4" maxlength=300}
|
2022-02-07 14:32:17 +01:00
|
|
|
</dl>
|
2022-01-29 15:00:04 +01:00
|
|
|
|
2022-02-25 15:51:48 +01:00
|
|
|
<dl class="config">
|
|
|
|
<dt><label>Articles du code général des impôts concernés par l'association : </label>
|
2022-03-18 20:39:02 +01:00
|
|
|
<b title="Champ obligatoire">(obligatoire ; sélectionnez tous les articles qui s'appliquent à
|
2022-03-23 09:05:43 +01:00
|
|
|
l'association)</b>
|
2022-02-07 14:32:17 +01:00
|
|
|
</dt>
|
|
|
|
{foreach from=$plugin_config->articlesCGI key="key" item="article"}
|
2022-03-18 20:39:02 +01:00
|
|
|
{*
|
|
|
|
À VÉRIFIER : {input : checked ne fonctionne pas si l'attribut name est un tableau...
|
2022-02-07 14:32:17 +01:00
|
|
|
{input type="checkbox" name="articlesCGI[]" value=$key label=$article.titre}
|
|
|
|
*}
|
2022-03-18 20:39:02 +01:00
|
|
|
<div>
|
|
|
|
<input type="checkbox" name="articlesCGI[]" value="{$key}" class="choix"
|
|
|
|
{if $article.valeur == 1}checked{/if}>
|
2022-03-03 12:09:52 +01:00
|
|
|
<label>Article {$article.titre}</label>
|
2022-03-18 20:39:02 +01:00
|
|
|
</div>
|
2022-03-03 12:09:52 +01:00
|
|
|
{/foreach}
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
<dl class="config">
|
|
|
|
<dt><label>Taux de réduction applicables : </label>
|
2022-03-18 20:39:02 +01:00
|
|
|
<b title="Champ obligatoire">(obligatoire ; sélectionnez tous les taux qui s'appliquent à
|
2022-03-23 09:05:43 +01:00
|
|
|
l'association)</b>
|
2022-03-03 12:09:52 +01:00
|
|
|
</dt>
|
|
|
|
{foreach from=$plugin_config->reduction key="key" item="taux"}
|
2022-03-18 20:39:02 +01:00
|
|
|
<div>
|
|
|
|
<input type="checkbox" name="tauxReduction[]" value="{$key}" class="choix"
|
|
|
|
{if $taux.valeur == 1}checked{/if}>
|
|
|
|
<label>Taux {$taux.taux}, ligne {$taux.ligne} de la déclaration
|
|
|
|
{if $taux.remarque !== ""}({$taux.remarque})</label>{/if}
|
|
|
|
</div>
|
2022-02-07 14:32:17 +01:00
|
|
|
{/foreach}
|
|
|
|
</dl>
|
2022-01-29 15:00:04 +01:00
|
|
|
</fieldset>
|
2022-02-24 11:28:08 +01:00
|
|
|
|
|
|
|
<fieldset>
|
2022-02-25 15:51:48 +01:00
|
|
|
<legend>Nom, fonction et signature du responsable</legend>
|
|
|
|
<dl class="config">
|
2022-03-04 09:39:20 +01:00
|
|
|
<dt><label>Nom</label></dt>
|
|
|
|
{input type="text" name="nom_responsable" source=$plugin.config label="" maxlength=50}
|
2022-02-25 15:51:48 +01:00
|
|
|
</dl>
|
|
|
|
|
|
|
|
<dl class="config">
|
2022-03-04 09:39:20 +01:00
|
|
|
<dt><label>Fonction</label></dt>
|
|
|
|
{input type="text" name="fonction_responsable" source=$plugin.config label="" maxlength=50}
|
2022-02-25 15:51:48 +01:00
|
|
|
</dl>
|
|
|
|
|
|
|
|
<dl class="config">
|
2022-03-04 09:39:20 +01:00
|
|
|
<dt><label>Signature</label></dt>
|
2022-03-18 20:39:02 +01:00
|
|
|
<p>L'image de la signature doit être d'une taille « raisonnable » et avoir un fond transparent</p>
|
|
|
|
{if $plugin_config.signature != ''}
|
|
|
|
<img id="signature" src="/{$plugin_config.signature}" />
|
|
|
|
{else}
|
|
|
|
<img id="signature" src="{$default_signature}" />
|
|
|
|
{/if}
|
|
|
|
{linkbutton shape="upload" label="Changer de signature" target="_dialog" href="upload.php?p=%s"|args:$path}
|
2022-02-24 11:28:08 +01:00
|
|
|
</dl>
|
|
|
|
</fieldset>
|
|
|
|
|
2022-03-17 15:55:54 +01:00
|
|
|
<fieldset>
|
|
|
|
<legend>Autres informations</legend>
|
2022-03-18 20:39:02 +01:00
|
|
|
<dl class="config">
|
2022-03-17 15:55:54 +01:00
|
|
|
<dt><label>Ville</label></dt>
|
|
|
|
<p>Précède la date sur le formulaire</p>
|
|
|
|
{input type="text" name="ville_asso" source=$plugin.config label="" maxlength=50}
|
|
|
|
</dl>
|
|
|
|
|
2022-03-18 20:39:02 +01:00
|
|
|
{* les champs de nom *}
|
2022-03-25 20:28:57 +01:00
|
|
|
<?php $nbChamps = count($champsNom); ?>
|
2022-03-18 20:39:02 +01:00
|
|
|
<dl class="config" {if $nbChamps == 1}hidden{/if}>
|
|
|
|
<dt><label>Champs nom et prénom</label></dt>
|
|
|
|
<p>Sélectionnez et classez le(s) champ(s) qui représente(nt) le nom et le prénom du donateur</p>
|
|
|
|
|
|
|
|
<div>
|
2022-03-25 20:28:57 +01:00
|
|
|
{foreach from=$champsNom key="nom" item="champ"}
|
2022-03-18 20:39:02 +01:00
|
|
|
<div>
|
|
|
|
<input type="checkbox" name="champsNom[]" value={$nom} class="choix" {if $nbChamps == 1 || $champ.position != 0}checked{/if} >
|
|
|
|
<label>{$champ.titre}</label>
|
|
|
|
<div class="actions">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/foreach}
|
|
|
|
</div>
|
|
|
|
</dl>
|
|
|
|
</fieldset>
|
2022-03-17 15:55:54 +01:00
|
|
|
|
2022-02-25 13:23:30 +01:00
|
|
|
<h3 class="warning">N'oubliez pas d'enregistrer, sinon les modifications ne seront pas prises en compte !</h3>
|
|
|
|
|
2022-01-29 15:00:04 +01:00
|
|
|
<p class="submit">
|
|
|
|
{csrf_field key="recusfiscaux_config"}
|
|
|
|
{button type="submit" name="save" label="Enregistrer" shape="right" class="main"}
|
|
|
|
</p>
|
2022-03-18 20:39:02 +01:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{literal}
|
|
|
|
<script type="text/javascript">
|
|
|
|
(function() {
|
|
|
|
var lesDivs = document.querySelectorAll('.actions');
|
|
|
|
for (i = 0; i < lesDivs.length; ++i) {
|
|
|
|
var up = document.createElement('a');
|
|
|
|
up.className = 'icn up';
|
|
|
|
up.innerHTML = '↑';
|
|
|
|
up.title = 'Déplacer vers le haut';
|
|
|
|
up.onclick = function(e) {
|
|
|
|
var field = this.parentNode.parentNode;
|
|
|
|
var p = field.previousSibling;
|
|
|
|
while (p != null && p.nodeType == 3) { p = p.previousSibling; }
|
|
|
|
field.parentNode.insertBefore(field, p);
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
lesDivs[i].appendChild(up);
|
|
|
|
}
|
|
|
|
}());
|
|
|
|
</script>
|
|
|
|
{/literal}
|