diff --git a/apps/note/tables.py b/apps/note/tables.py
index 3306cb3bb5f348537f5f063a84bf2b4696897ba6..cea2aa8e05f7f2dfa1ea7b15ac22c259c907653b 100644
--- a/apps/note/tables.py
+++ b/apps/note/tables.py
@@ -17,8 +17,8 @@ class HistoryTable(tables.Table):
                 'table table-condensed table-striped table-hover'
         }
         model = Transaction
-        exclude = ("polymorphic_ctype", )
-        order_by = ('-id', )
+        exclude = ("id", "polymorphic_ctype", )
+        order_by = ('-created_at', )
         template_name = 'django_tables2/bootstrap4.html'
         sequence = ('...', 'total', 'valid')
 
diff --git a/apps/note/views.py b/apps/note/views.py
index e323a4fdc8833aaa3947ccde169c36529ba92564..9b60a64283b1be71ab6c06815e1429a6b275a139 100644
--- a/apps/note/views.py
+++ b/apps/note/views.py
@@ -115,7 +115,7 @@ class ConsoView(LoginRequiredMixin, SingleTableView):
 
     # Transaction history table
     table_class = HistoryTable
-    table_pagination = {"per_page": 10}
+    table_pagination = {"per_page": 20}
 
     def get_context_data(self, **kwargs):
         """
diff --git a/static/js/consos.js b/static/js/consos.js
index 7a38614c10f013eff0ee762e1bf0b38443e0793a..df50bda27e820593b09c42db3dbe68c547c2affe 100644
--- a/static/js/consos.js
+++ b/static/js/consos.js
@@ -23,14 +23,14 @@ $(document).ready(function() {
     });
 });
 
-let notes = [];
-let notes_display = [];
-let buttons = [];
+notes = [];
+notes_display = [];
+buttons = [];
 
 // When the user searches an alias, we update the auto-completion
 autoCompleteNote("note", "alias_matched", "note_list", notes, notes_display,
     "alias", "note", "user_note", "profile_pic", function() {
-        if (buttons.length > 0) {
+        if (buttons.length > 0 && $("#single_conso").is(":checked")) {
             consumeAll();
             return false;
         }
@@ -58,7 +58,7 @@ function addConso(dest, amount, type, category_id, category_name, template_id, t
     if (button == null)
         buttons.push([dest, 1, amount, type, category_id, category_name, template_id, template_name]);
 
-    if ($("#double_conso:checked").length > 0) {
+    if ($("#double_conso").is(":checked")) {
         let html = "";
         buttons.forEach(function(button) {
             html += li("conso_button_" + button[6], button[7]
diff --git a/templates/base.html b/templates/base.html
index 6af81fe8049f6866616730e2ec1a38189e45c06e..eefad7c8ffb4c2b19ec684f6a18f8e89b3872b49 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -161,6 +161,10 @@ SPDX-License-Identifier: GPL-3.0-or-later
     </div>
 </footer>
 
+<script>
+    CSRF_TOKEN = "{{ csrf_token }}";
+</script>
+
 {% block extrajavascript %}
 {% endblock extrajavascript %}
 </body>
diff --git a/templates/note/conso_form.html b/templates/note/conso_form.html
index 6ae643b3d3abbb7a7347a7367c2563dec16c411e..100f46c2c5aa42f0d4e457dec67d8ef7eea1a2cc 100644
--- a/templates/note/conso_form.html
+++ b/templates/note/conso_form.html
@@ -143,14 +143,18 @@
 {% block extrajavascript %}
     <script type="text/javascript" src="/static/js/consos.js"></script>
     <script type="text/javascript">
-        var CSRF_TOKEN = "{{ csrf_token }}";
-
         $("#double_conso").click(function() {
             $("#consos_list_div").show();
             $("#infos_div").attr('class', 'col-sm-5 col-xl-6');
             $("#note_infos_div").attr('class', 'col-xl-3');
             $("#user_select_div").attr('class', 'col-xl-4');
             $("#buttons_div").attr('class', 'col-sm-7 col-xl-6');
+
+            if (buttons.length > 0) {
+                let note_list_obj = $("#note_list");
+                $("#consos_list").html(note_list_obj.html());
+                note_list_obj.html("");
+            }
         });
 
         $("#single_conso").click(function() {
@@ -159,6 +163,18 @@
             $("#note_infos_div").attr('class', 'col-xl-5');
             $("#user_select_div").attr('class', 'col-xl-7');
             $("#buttons_div").attr('class', 'col-sm-7 col-md-8');
+
+            if (buttons.length > 0) {
+                if (notes_display.length === 0) {
+                    let consos_list_obj = $("#consos_list");
+                    $("#note_list").html(consos_list_obj.html());
+                    consos_list_obj.html("");
+                }
+                else {
+                    buttons.length = 0;
+                    $("#consos_list").html("");
+                }
+            }
         });
 
         $("#consos_list_div").hide();
diff --git a/templates/note/transaction_form.html b/templates/note/transaction_form.html
index 62e7137c5fc4776562e5c9734d78948656667f98..553d289cd54a3521d8fddbd115d6f4945d8fbe0c 100644
--- a/templates/note/transaction_form.html
+++ b/templates/note/transaction_form.html
@@ -71,13 +71,11 @@ SPDX-License-Identifier: GPL-2.0-or-later
 
 {% block extrajavascript %}
     <script>
-        var CSRF_TOKEN = "{{ csrf_token }}";
-
-        var sources = [];
-        var sources_notes_display = [];
-        var dests = [];
-        var dests_notes_display = [];
-        var transfer_mode = false;
+        sources = [];
+        sources_notes_display = [];
+        dests = [];
+        dests_notes_display = [];
+        transfer_mode = false;
 
         $(document).ready(function() {
            autoCompleteNote("source_note", "source_alias_matched", "source_note_list", sources, sources_notes_display,