Overview
Comment:Ne pas permettre de ne pas changer de catégorie
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA1: 0aa88dbf39fa339caed5eef166dea72bb8dc7bd6
User & Date: bohwaz on 2017-10-24 01:08:23
Other Links: manifest | tags
References
2020-12-08
23:25 Wiki page "Changelog/0.9" artifact: b9c916b4d1 user: bohwaz
Context
2017-10-24
06:06
Corrige bug rapporté par @Christine : catégories cachées ne sont plus filtrables dans la liste des membres check-in: 8cd03c1209 user: bohwaz tags: trunk, stable
01:08
Ne pas permettre de ne pas changer de catégorie check-in: 0aa88dbf39 user: bohwaz tags: trunk, stable
00:41
Corriger liens wiki internes check-in: 152c10b3f4 user: bohwaz tags: trunk, stable
Changes

Modified src/templates/admin/membres/action.tpl from [c6dae71e1a] to [d79c9cc41b].

12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
    {if $action == 'move'}
    <fieldset>
        <legend>Changer la catégorie des {$nb_selected} membres sélectionnés</legend>
        <dl>
            <dt><label for="f_cat">Nouvelle catégorie</label> <b title="(Champ obligatoire)">obligatoire</b></dt>
            <dd>
                <select name="id_categorie" id="f_cat">
                    <option value="0" selected="selected">-- Pas de changement</option>
                {foreach from=$membres_cats key="id" item="nom"}
                    <option value="{$id}">{$nom}</option>
                {/foreach}
                </select>
            </dd>
        </dl>
    </fieldset>







<







12
13
14
15
16
17
18

19
20
21
22
23
24
25
    {if $action == 'move'}
    <fieldset>
        <legend>Changer la catégorie des {$nb_selected} membres sélectionnés</legend>
        <dl>
            <dt><label for="f_cat">Nouvelle catégorie</label> <b title="(Champ obligatoire)">obligatoire</b></dt>
            <dd>
                <select name="id_categorie" id="f_cat">

                {foreach from=$membres_cats key="id" item="nom"}
                    <option value="{$id}">{$nom}</option>
                {/foreach}
                </select>
            </dd>
        </dl>
    </fieldset>