diff --git a/nummi/main/templates/main/index.html b/nummi/main/templates/main/index.html
index 2f9ae84..70888b0 100644
--- a/nummi/main/templates/main/index.html
+++ b/nummi/main/templates/main/index.html
@@ -1,5 +1,7 @@
{% extends "main/base.html" %}
+{%
+
{% block body %}
Nummi
@@ -7,11 +9,24 @@
Add transaction
{% if transactions %}
-
+
+
+ Date |
+ Nom |
+ Valeur |
+ Catégorie |
+ Description |
+
{% for trans in transactions %}
- - {{ trans }}
+
+ {{ trans.date|date:"c" }} |
+ {{ trans.name }} |
+ {{ trans.value|floatformat:"2g" }} € |
+ {{ trans.category|default_if_none:"–" }} |
+ {{ trans.description }} |
+
{% endfor %}
-
+
{% endif %}
{% if categories %}
diff --git a/nummi/nummi/settings.py b/nummi/nummi/settings.py
index 5d8c261..6c756bd 100644
--- a/nummi/nummi/settings.py
+++ b/nummi/nummi/settings.py
@@ -106,9 +106,9 @@ AUTH_PASSWORD_VALIDATORS = [
# Internationalization
# https://docs.djangoproject.com/en/4.0/topics/i18n/
-LANGUAGE_CODE = "en-us"
+LANGUAGE_CODE = "fr-fr"
-TIME_ZONE = "UTC"
+TIME_ZONE = "CET"
USE_I18N = True