paramétrage articles CGI, nom et fonction responsable
FossilOrigin-Name: be718016fdbe18eb51c7245ea996fffc6a1cce1ce4eb694a38042acd8356f782
This commit is contained in:
parent
b819562bc6
commit
c6515e18e4
9 changed files with 102 additions and 41 deletions
|
|
@ -11,19 +11,23 @@
|
|||
|
||||
{form_errors}
|
||||
|
||||
<form method="post" action="{$self_url}" enctype="multipart/form-data" data-focus="1">
|
||||
<form method="post" action="{$self_url}" enctype="multipart/form-data">
|
||||
<fieldset>
|
||||
{*
|
||||
<legend>Objet (but) de l'association</legend>
|
||||
<dl>
|
||||
<dt><label>Objet</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
||||
*}
|
||||
<dl class="config">
|
||||
<dt><label>Objet (but) de l'association</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
||||
{input type="text" name="objet_asso" source=$plugin.config label="" required="required" maxlength=300}
|
||||
</dl>
|
||||
{*
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>Droit à la réduction d'impôt</legend>
|
||||
<dl>
|
||||
<dt><label>Articles concernés par l'association : </label>
|
||||
*}
|
||||
<dl class="config">
|
||||
<dt><label>Articles du code général des impôts concernés par l'association : </label>
|
||||
<b title="Champ obligatoire">(obligatoire)</b>
|
||||
</dt>
|
||||
{foreach from=$plugin_config->articlesCGI key="key" item="article"}
|
||||
|
|
@ -32,14 +36,27 @@
|
|||
{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>
|
||||
{if $article.valeur == 1}checked{/if}><label>Article {$article.titre}</label>
|
||||
{/foreach}
|
||||
</dl>
|
||||
{*
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>Signature du responsable</legend>
|
||||
<dl>
|
||||
<legend>Nom, fonction et signature du responsable</legend>
|
||||
*}
|
||||
<dl class="config">
|
||||
<dt><label>Nom du responsable</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
||||
{input type="text" name="nom_responsable" source=$plugin.config label="" required="required" maxlength=50}
|
||||
</dl>
|
||||
|
||||
<dl class="config">
|
||||
<dt><label>Fonction du responsable</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
||||
{input type="text" name="fonction_responsable" source=$plugin.config label="" required="required" maxlength=50}
|
||||
</dl>
|
||||
|
||||
<dl class="config">
|
||||
<dt><label>Signature du responsable</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
||||
<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}" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue