diff --git a/templates/note/conso_form.html b/templates/note/conso_form.html
index 2c2066e8052046abf4013586a084102c501f23c9..8945a91907dab27c0b509fd39e07c89c7842375a 100644
--- a/templates/note/conso_form.html
+++ b/templates/note/conso_form.html
@@ -58,16 +58,16 @@
             </div>
 
             {# Regroup buttons under categories #}
-            {% regroup transaction_templates by template_type as template_types %}
+            {% regroup transaction_templates by category as categories %}
 
             <div class="card border-primary text-center shadow mb-4">
                 {# Tabs for button categories #}
                 <div class="card-header">
                     <ul class="nav nav-tabs nav-fill card-header-tabs">
-                        {% for template_type in template_types %}
+                        {% for category in categories %}
                             <li class="nav-item">
-                                <a class="nav-link font-weight-bold" data-toggle="tab" href="#{{ template_type.grouper|slugify }}">
-                                    {{ template_type.grouper }}
+                                <a class="nav-link font-weight-bold" data-toggle="tab" href="#{{ category.grouper|slugify }}">
+                                    {{ category.grouper }}
                                 </a>
                             </li>
                         {% endfor %}
@@ -77,10 +77,10 @@
                 {# Tabs content #}
                 <div class="card-body">
                     <div class="tab-content">
-                        {% for template_type in template_types %}
-                            <div class="tab-pane" id="{{ template_type.grouper|slugify }}">
+                        {% for category in categories %}
+                            <div class="tab-pane" id="{{ category.grouper|slugify }}">
                                 <div class="d-inline-flex flex-wrap justify-content-center">
-                                    {% for button in template_type.list %}
+                                    {% for button in category.list %}
                                         <button class="btn btn-outline-dark rounded-0 flex-fill"
                                                 name="button" value="{{ button.name }}">
                                             {{ button.name }} ({{ button.amount | pretty_money }})
diff --git a/templates/note/transactiontemplate_list.html b/templates/note/transactiontemplate_list.html
index 62e4d164794c9995153c7aeedb8def8a381b8e74..4960023694b30179bc3423c30c4a451fa3642a8b 100644
--- a/templates/note/transactiontemplate_list.html
+++ b/templates/note/transactiontemplate_list.html
@@ -15,7 +15,7 @@
     <td><a href="{{object.get_absolute_url}}">{{ object.name }}</a></td>
     <td>{{ object.destination }}</td>
     <td>{{ object.amount | pretty_money }}</td>
-    <td>{{ object.template_type }}</td>
+    <td>{{ object.category }}</td>
 </tr>
 {% endfor %}
 </table>