diff --git a/apps/activity/templates/activity/activity_entry.html b/apps/activity/templates/activity/activity_entry.html index e4bd4416..6b3b892e 100644 --- a/apps/activity/templates/activity/activity_entry.html +++ b/apps/activity/templates/activity/activity_entry.html @@ -8,7 +8,7 @@ SPDX-License-Identifier: GPL-3.0-or-later {% block content %}
-
+
{% trans "Transfer" %} @@ -27,6 +27,8 @@ SPDX-License-Identifier: GPL-3.0-or-later
+
+ @@ -35,7 +37,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
-
+

{{ entries.count }} {% if entries.count >= 2 %}{% trans "entries" %}{% else %}{% trans "entry" %}{% endif %}

{% render_table table %} diff --git a/apps/note/templates/note/transaction_form.html b/apps/note/templates/note/transaction_form.html index a910b4a1..86dd6e87 100644 --- a/apps/note/templates/note/transaction_form.html +++ b/apps/note/templates/note/transaction_form.html @@ -9,7 +9,7 @@ SPDX-License-Identifier: GPL-2.0-or-later {# bandeau transfert/crédit/débit/activité #}
-
+
+
{# Preview note profile (picture, username and balance) #}
diff --git a/note_kfet/static/js/transfer.js b/note_kfet/static/js/transfer.js index aba8d684..df0effa1 100644 --- a/note_kfet/static/js/transfer.js +++ b/note_kfet/static/js/transfer.js @@ -169,9 +169,6 @@ $(document).ready(function() { type_transfer.removeAttr('checked'); $("#type_credit").removeAttr('checked'); $("#type_debit").removeAttr('checked'); - $("label[for='type_transfer']").attr('class', 'btn btn-sm btn-outline-primary'); - $("label[for='type_credit']").attr('class', 'btn btn-sm btn-outline-primary'); - $("label[for='type_debit']").attr('class', 'btn btn-sm btn-outline-primary'); if (location.hash) $("#type_" + location.hash.substr(1)).click();