1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-03-24 22:51:11 +00:00

Merge branch 'notekfet_wrapped' into 'main'

Another tables and doc

See merge request bde/nk20!299
This commit is contained in:
quark 2025-03-14 00:44:57 +01:00
commit cb61c511ce

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 %}