diff --git a/_check_date.html b/_check_date.html
deleted file mode 100644
index f68ec49..0000000
--- a/_check_date.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{{* -*- brindille -*- *}}
-
-{{*
- vérifier que la date est située dans un exercice ouvert
- paramètres :
- - date
- résultat : open_years, selected_year, selected_chart
-*}}
-
-{{:assign open_years=""}}
-{{#years closed=false order="start_date" assign="open_years."}}
- {{if
- $start_date|strtotime <= $date|parse_date|strtotime &&
- $end_date|strtotime >= $date|parse_date|strtotime
- }}
- {{:assign selected_year=$id}}
- {{:assign selected_chart=$id_chart}}
- {{/if}}
-{{/years}}
diff --git a/_next_year.html b/_next_year.html
deleted file mode 100644
index 0de8dea..0000000
--- a/_next_year.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{{* -*- brindille -*- *}}
-{{*
- Rend une date située un an après la date paramètre
- paramètres :
- - date
- résultat : date_amort
-*}}
-
-{{:assign jour=$date|date:"d"}}
-{{:assign mois=$date|date:"m"}}
-{{:assign annee=$date|date:"Y"}}
-{{:assign annee="%d+1"|math:$annee}}
-{{:assign date_amort="%s/%s/%s"|args:$jour:$mois:$annee}}
diff --git a/immobilisations_non.html b/immobilisations_non.html
deleted file mode 100644
index 39fbd96..0000000
--- a/immobilisations_non.html
+++ /dev/null
@@ -1,72 +0,0 @@
-{{* -*- brindille -*- *}}
-
-{{* Liste des immobilisations non amortissables *}}
-
-Immobilisations non amortissables
-
-
-
-
-
-
-
-
-
- {{#load type="immo" where="$$.status = 'ignored'"}}
- {{:assign var="lines." value="'%s'"|args:$line}}
- {{/load}}
- {{:assign lines=$lines|implode:","}}
- {{:assign lines="("|cat:$lines|cat:")"}}
- {{:assign condition="line.id IN %s"|args:$lines}}
-{{:debug condition=$condition}}
- {{#select
- trans.id as trans_id,
- trans.label as trans_label,
- trans.date as trans_date,
- line.id as immo_id,
- account.id as account_id,
- account.code as account_code,
- account.label as account_label,
- line.debit AS debit,
- project.label as project_label,
- trans.id_year as trans_id_year
- FROM acc_transactions AS trans
- INNER JOIN acc_transactions_lines AS line ON line.id_transaction = trans.id
- INNER JOIN acc_accounts AS account ON line.id_account = account.id
- INNER JOIN acc_years AS years ON trans.id_year = years.id
- LEFT JOIN acc_projects AS project ON line.id_project = project.id
- WHERE !condition
- ORDER BY trans.date DESC;
- !condition=$condition
- }}
- {{:assign trans_url="%s/acc/transactions/details.php?id=%s"|args:$admin_url:$trans_id}}
- {{:assign compte_url="%s/acc/accounts/journal.php?id=%s&year=%s"|args:$admin_url:$account_id:$trans_id_year}}
- N°
- Date
- Libellé
- Montant
- N° compte
- Compte
- Projet
-
-
-
- {{/select}}
-
- #{{$trans_id}}
- {{$trans_date|date_short}}
- {{$trans_label}}
- {{"%f"|math:$debit|money:false}}
- {{$account_code}}
- {{$account_label}}
- {{$project_label}}
-
- {{:linkbutton
- label="Modifier infos"
- href="modif_infos.html?immo_id=%s&amort=0"|args:$immo_id
- shape="help"
- target="_dialog"
- }}
-
-