Overview
Comment:Message en cas d'absence de résultat
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 8658e35b26eb4d7319f9814962117714a4f7770d
User & Date: bohwaz on 2014-02-07 14:41:08
Other Links: manifest | tags
Context
2014-02-07
15:00
Séparation de la CSS impression check-in: 31b40527e2 user: bohwaz tags: trunk
14:41
Message en cas d'absence de résultat check-in: 8658e35b26 user: bohwaz tags: trunk
2014-02-06
19:59
Liste des écritures réalisées par un membre check-in: 4d6e463155 user: bohwaz tags: trunk
Changes

Modified src/templates/admin/compta/operations/membre.tpl from [0797e9c6e2] to [f1463a89e0].

18
19
20
21
22
23
24



25
26
27
28
29
30
31
            <p>
                <input type="submit" value="Visualiser &rarr;" />
            </p>
        </noscript>
    </fieldset>
</form>




<table class="list">
    <colgroup>
        <col width="3%" />
        <col width="3%" />
        <col width="12%" />
        <col width="10%" />
        <col />







>
>
>







18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
            <p>
                <input type="submit" value="Visualiser &rarr;" />
            </p>
        </noscript>
    </fieldset>
</form>

{if empty($journal)}
    <p class="alert">Aucune écriture comptable n'est associée à ce membre pour l'exercice demandé.</p>
{else}
<table class="list">
    <colgroup>
        <col width="3%" />
        <col width="3%" />
        <col width="12%" />
        <col width="10%" />
        <col />
55
56
57
58
59
60
61

62
63
            <th>{$ligne.libelle|escape}</th>
            <td>{$ligne.compte_debit|escape} — {$ligne.compte_debit|get_nom_compte}</td>
            <td>{$ligne.compte_credit|escape} — {$ligne.compte_credit|get_nom_compte}</td>
        </tr>
    {/foreach}
    </tbody>
</table>


{include file="admin/_foot.tpl"}







>


58
59
60
61
62
63
64
65
66
67
            <th>{$ligne.libelle|escape}</th>
            <td>{$ligne.compte_debit|escape} — {$ligne.compte_debit|get_nom_compte}</td>
            <td>{$ligne.compte_credit|escape} — {$ligne.compte_credit|get_nom_compte}</td>
        </tr>
    {/foreach}
    </tbody>
</table>
{/if}

{include file="admin/_foot.tpl"}