Overview
Comment:Changing the words, again
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: 6ea009163507883bf32ba3a1ba358c2d3fa0dfc6
User & Date: bohwaz on 2020-09-10 00:20:02
Other Links: branch diff | manifest | tags
Context
2020-09-10
00:20
Better styling of form elements check-in: f3647751b0 user: bohwaz tags: dev
00:20
Changing the words, again check-in: 6ea0091635 user: bohwaz tags: dev
00:19
Don't forget the name attribute check-in: cbf952e28c user: bohwaz tags: dev
Changes

Modified src/templates/acc/accounts/index.tpl from [e3f5de676f] to [293e1594ea].

1

2
3
4
5



6
7
8
9
10
11
12

1
2
3


4
5
6
7
8
9
10
11
12
13
-
+


-
-
+
+
+







{include file="admin/_head.tpl" title="%s - Comptes utilisés couramment"|args:$chart.label current="acc/charts"}
{include file="acc/_head.tpl" title="Comptes favoris" current="acc/charts"}

<ul class="actions">
	<li class="current"><a href="{$admin_url}acc/accounts/">Comptes utilisés couramment</a></li>
	<li><a href="{$admin_url}acc/charts/">Gestion des plans comptables</a></li>
	<li class="current"><a href="{$admin_url}acc/accounts/">Comptes favoris</a></li>
	<li><a href="{$admin_url}acc/accounts/all.php">Tous les comptes</a></li>
	<li><a href="{$admin_url}acc/charts/">Plans comptables</a></li>
	<li><a href="{$admin_url}acc/charts/import.php">Importer un plan comptable</a></li>
</ul>

<form method="post" action="{$self_url_no_qs}">
	<fieldset>
		<legend>Ajouter un compte</legend>
		<dl>
32
33
34
35
36
37
38
39
40
41
33
34
35
36
37
38
39
40

41








-

			{button shape="menu" label="Journal" href="acc/transactions/journal.php?id=%d"|args:$account.id}
			{button shape="edit" label="Modifier" href="acc/accounts/edit.php?id=%d"|args:$account.id}
			{button shape="delete" label="Supprimer" href="acc/accounts/delete.php?id=%d"|args:$account.id}
		</dd>
	{/foreach}
	</dl>
{/foreach}


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

Modified src/templates/acc/charts/index.tpl from [7eae295b0f] to [e59f6110eb].

1
2
3
4
5



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

21
22
23
24
25
26
27
1
2
3


4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

21
22
23
24
25
26
27
28



-
-
+
+
+














-
+







{include file="admin/_head.tpl" title="Gestion des plans comptables" current="acc/charts"}

<ul class="actions">
    <li><a href="{$admin_url}acc/accounts/">Comptes utilisés couramment</a></li>
    <li class="current"><a href="{$admin_url}acc/charts/">Gestion des plans comptables</a></li>
    <li><a href="{$admin_url}acc/accounts/">Comptes favoris</a></li>
    <li><a href="{$admin_url}acc/accounts/all.php">Tous les comptes</a></li>
    <li class="current"><a href="{$admin_url}acc/charts/">Plans comptables</a></li>
    <li><a href="{$admin_url}acc/charts/import.php">Importer un plan comptable</a></li>
</ul>

{if count($list)}
    <table class="list">
        <thead>
        	<td>Pays</td>
            <th>Libellé</th>
            <td></td>
        </thead>
        <tbody>
            {foreach from=$list item="item"}
                <tr>
                	<td>{$item.country|get_country_name}</td>
                    <th><a href="{$admin_url}acc/accounts/?id={$item.id}">{$item.label}</a> <em>{if $item.code}(officiel){else}(copie){/if}</em></th>
                    <th><a href="{$admin_url}acc/accounts/all.php?id={$item.id}">{$item.label}</a> <em>{if $item.code}(officiel){else}(copie){/if}</em></th>
                    <td class="actions">
                        {icon shape="menu" label="Gérer les comptes" href="acc/accounts/all.php?id=%d"|args:$item.id}
                        {icon shape="edit" label="Renommer" href="acc/charts/edit.php?id=%d"|args:$item.id}
                        {icon shape="export" label="Exporter en CSV" href="acc/charts/export.php?id=%d"|args:$item.id}
                        {if empty($item.code)}
                            {icon shape="upload" label="Importer" href="acc/charts/import.php?id=%d"|args:$item.id}
                            {icon shape="delete" label="Supprimer" href="acc/charts/delete.php?id=%d"|args:$item.id}