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-24 11:28:08 +01:00
|
|
|
<form method="post" action="{$self_url}" enctype="multipart/form-data" data-focus="1">
|
2022-01-29 15:00:04 +01:00
|
|
|
<fieldset>
|
2022-02-07 14:32:17 +01:00
|
|
|
<legend>Objet (but) de l'association</legend>
|
|
|
|
<dl>
|
2022-02-24 11:28:08 +01:00
|
|
|
<dt><label>Objet</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
|
|
|
{input type="text" name="objet_asso" source=$plugin.config label="" required="required" maxlength=300}
|
2022-02-07 14:32:17 +01:00
|
|
|
</dl>
|
2022-01-29 15:00:04 +01:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<legend>Droit à la réduction d'impôt</legend>
|
2022-02-07 14:32:17 +01:00
|
|
|
<dl>
|
|
|
|
<dt><label>Articles concernés par l'association : </label>
|
2022-02-24 11:28:08 +01:00
|
|
|
<b title="Champ obligatoire">(obligatoire)</b>
|
2022-02-07 14:32:17 +01:00
|
|
|
</dt>
|
|
|
|
{foreach from=$plugin_config->articlesCGI key="key" item="article"}
|
2022-02-19 11:16:24 +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}
|
|
|
|
*}
|
|
|
|
<input type="checkbox" name="articlesCGI[]" value="{$key}"
|
|
|
|
{if $article.valeur == 1}checked{/if}><label>{$article.titre}</label>
|
|
|
|
{/foreach}
|
|
|
|
</dl>
|
2022-01-29 15:00:04 +01:00
|
|
|
</fieldset>
|
2022-02-24 11:28:08 +01:00
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<legend>Signature du responsable</legend>
|
|
|
|
<dl>
|
2022-02-25 13:23:30 +01:00
|
|
|
<p>L'image de la signature doit être d'une taille « raisonnable » et avoir un fond transparent</p>
|
2022-02-24 11:28:08 +01:00
|
|
|
{if $plugin_config.signature != ''}
|
2022-02-25 13:23:30 +01:00
|
|
|
<img id="signature" src="/{$plugin_config.signature}" />
|
|
|
|
{else}
|
|
|
|
<img id="signature" src="{$default_signature}" />
|
2022-02-24 11:28:08 +01:00
|
|
|
{/if}
|
|
|
|
{linkbutton shape="upload" label="Changer de signature" target="_dialog" href="upload.php?p=%s"|args:$path}
|
|
|
|
</dl>
|
|
|
|
</fieldset>
|
|
|
|
|
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-02-07 14:32:17 +01:00
|
|
|
</form>
|