1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 09:58:23 +02:00

Another tables and doc

This commit is contained in:
quark
2025-03-13 23:56:10 +01:00
parent bd7e6b8ad4
commit 25bfa575ed
5 changed files with 234 additions and 5 deletions

View File

@ -23,9 +23,9 @@ SPDX-License-Identifier: GPL-3.0-or-later
let d1 = document.getElementById("consumer");
let d2 = document.getElementById("creditor");
if (con) { d1.textContent = {{ big_consumer | safe }}[0] + " " + gettext("with") + " " + {{ big_consumer | safe}}[1] + "€";}
else { d1.textContent = gettext({% trans "Infortunately, you doesn't have consumer this year" %});};
else { d1.textContent = gettext("{% trans "Infortunately, you doesn't have consumer this year" %}");};
if (cre) { d2.textContent = {{ big_creancier | safe}}[0] + " " + gettext("with") + " " + {{ big_creancier | safe}}[1] + "€";}
else { d2.textContent = gettext({% trans "Congratulations you are a real rat !" %}); };
else { d2.textContent = gettext("{% trans "Congratulations you are a real rat !" %}"); };
</script>
{% endblock %}