Overview
Comment: | Fix [b08f3855636a70c46c228607069bcb57352afc20] |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d437bb378d39db7e65a6af152eefefac |
User & Date: | bohwaz on 2017-10-25 03:42:28 |
Other Links: | manifest | tags |
References
2017-10-25
| ||
03:43 | • Fixed ticket [b08f385563]: Erreur de lien e-mail dans la page d'accueil plus 5 other changes artifact: 32f43d8118 user: bohwaz | |
Context
2017-10-25
| ||
03:49 | Corrige [0a7d95d1fe6e2ac1d17306cefbb3af1b64ba4038] check-in: 4d9bade87f user: bohwaz tags: trunk, stable | |
03:42 | Fix [b08f3855636a70c46c228607069bcb57352afc20] check-in: d437bb378d user: bohwaz tags: trunk | |
2017-10-24
| ||
06:19 | Seulement certains types d'images sont acceptés (corrige erreur avec les fichiers BMP) check-in: 75f89f129a user: bohwaz tags: trunk, stable | |
Changes
Modified src/templates/admin/index.tpl from [f2462978fc] to [9de3a516d6].
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
{if !empty($config.adresse_asso)} <p> {$config.adresse_asso|escape|nl2br} </p> {/if} {if !empty($config.email_asso)} <p> E-Mail : <a href="{$config.email_asso}">{$config.email_asso}</a> </p> {/if} {if !empty($config.site_asso)} <p> Web : <a href="{$config.site_asso}">{$config.site_asso}</a> </p> {/if} |
| |
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
{if !empty($config.adresse_asso)}
<p>
{$config.adresse_asso|escape|nl2br}
</p>
{/if}
{if !empty($config.email_asso)}
<p>
E-Mail : <a href="mailto:{$config.email_asso}">{$config.email_asso}</a>
</p>
{/if}
{if !empty($config.site_asso)}
<p>
Web : <a href="{$config.site_asso}">{$config.site_asso}</a>
</p>
{/if}
|