Fix montants (locale) + timeout fetch Indy + message d'erreur

This commit is contained in:
2026-06-30 14:57:36 +02:00
parent 75af558b49
commit 53fbf19a0b
8 changed files with 152 additions and 7 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
<!DOCTYPE html>
{% load l10n %}<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
@@ -128,8 +128,8 @@
{% for val,lab in regimes %}<option value="{{ val }}" {% if val == l.regime %}selected{% endif %}>{{ lab }}</option>{% endfor %}
</select>
</td>
<td><input type="number" step="0.01" name="l_taux" value="{{ l.taux }}" class="num" style="width:70px"></td>
<td><input type="number" step="0.01" name="l_montant" value="{{ l.montant }}" class="num" style="width:100px"></td>
<td><input type="number" step="0.01" name="l_taux" value="{{ l.taux|unlocalize }}" class="num" style="width:70px"></td>
<td><input type="number" step="0.01" name="l_montant" value="{{ l.montant|unlocalize }}" class="num" style="width:100px"></td>
<td>{{ l.type }}</td>
<input type="hidden" name="l_activite" value="{{ l.activite }}">
<input type="hidden" name="l_indy_id" value="{{ l.indy_id }}">