+
+
+ {% for date, transactions in transactions_per_day.items %}
+
+
{{ date }}
+
{{ transactions.income }}
+
{{ transactions.expense }}
+
+ {% endfor %}
+
+
+
+
-
-
\ No newline at end of file
+{% endblock %}
diff --git a/templates/FinancerApp/login.html b/templates/FinancerApp/login.html
index 566549b..5bf8e8e 100644
--- a/templates/FinancerApp/login.html
+++ b/templates/FinancerApp/login.html
@@ -1,10 +1,25 @@
-
-
-
-
- Title
-
-
+{% include 'include/head.html' %}
+{% block content %}
-
-
\ No newline at end of file
+
+
+
+
+
+
Авторизация
+
+
+
+
+
+
+{% endblock %}
diff --git a/templates/FinancerApp/profile.html b/templates/FinancerApp/profile.html
new file mode 100644
index 0000000..56dffe9
--- /dev/null
+++ b/templates/FinancerApp/profile.html
@@ -0,0 +1,175 @@
+{% include 'include/head.html' %}
+
+
+
Профиль пользователя {{ user.username }}
+
+
+
+
+
+
+
+
+
+
+
+
Доходы и расходы по месяцам
+
+
+
+
+
Месяц
+
Доходы
+
Расходы
+
+
+
+ {% for month, transactions in transactions_per_month.items %}
+
+
{{ month|date:"F Y" }}
+
{{ transactions.income }}
+
{{ transactions.expense }}
+
+ {% endfor %}
+
+
+
+
+
+
+
Транзакции по дням
+
+
+
+
+
Дата
+
Доходы
+
Расходы
+
+
+
+ {% for date, transactions in transactions_per_day.items %}
+
+
{{ date }}
+
{{ transactions.income }}
+
{{ transactions.expense }}
+
+ {% endfor %}
+
+
+
+
+
+
+
Диаграмма по месяцам
+
+
+
+
+
Диаграмма по годам
+
+
+
+
+
+
diff --git a/templates/FinancerApp/register.html b/templates/FinancerApp/register.html
index 566549b..e443773 100644
--- a/templates/FinancerApp/register.html
+++ b/templates/FinancerApp/register.html
@@ -1,10 +1,30 @@
-
-
-
-
- Title
-
-
-
-
-
\ No newline at end of file
+{% include 'include/head.html' %}
+{% block content %}
+
+
+
+
+
+
Регистрация
+
+
+
+
+
+
+{% endblock %}
diff --git a/templates/include/head.html b/templates/include/head.html
new file mode 100644
index 0000000..5e0ccd0
--- /dev/null
+++ b/templates/include/head.html
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ Title
+
+
+
\ No newline at end of file