Compare commits
3 commits
76ac6bc7fb
...
4bbb5de3c5
Author | SHA1 | Date | |
---|---|---|---|
4bbb5de3c5 | |||
ffc0fa3ce1 | |||
8dd29be8bf |
9 changed files with 64 additions and 11 deletions
Binary file not shown.
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-22 15:16+0200\n"
|
||||
"POT-Creation-Date: 2023-11-25 12:05+0100\n"
|
||||
"PO-Revision-Date: 2023-04-22 15:18+0200\n"
|
||||
"Last-Translator: Edgar P. Burkhart <traduction@edgarpierre.fr>\n"
|
||||
"Language-Team: \n"
|
||||
|
@ -61,3 +61,11 @@ msgstr "Dépenses"
|
|||
#: .\category\templates\category\category_plot.html:16
|
||||
msgid "Income"
|
||||
msgstr "Revenus"
|
||||
|
||||
#: .\category\templates\category\category_plot.html:56
|
||||
msgid "No transaction"
|
||||
msgstr "Aucune transaction"
|
||||
|
||||
#: .\category\templates\category\category_plot.html:64
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
|
Binary file not shown.
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-23 08:02+0200\n"
|
||||
"POT-Creation-Date: 2023-11-25 12:05+0100\n"
|
||||
"PO-Revision-Date: 2023-04-23 08:03+0200\n"
|
||||
"Last-Translator: Edgar P. Burkhart <traduction@edgarpierre.fr>\n"
|
||||
"Language-Team: \n"
|
||||
|
@ -124,3 +124,7 @@ msgstr "Aucune catégorie"
|
|||
#: .\main\templates\main\index.html:44
|
||||
msgid "History"
|
||||
msgstr "Historique"
|
||||
|
||||
#: .\main\views.py:68
|
||||
msgid "was created successfully"
|
||||
msgstr "a été créé avec succès"
|
||||
|
|
|
@ -194,3 +194,25 @@ main h2.new {
|
|||
p {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
ul.messages {
|
||||
font-weight: 550;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
background: var(--bg-01);
|
||||
padding: 0;
|
||||
}
|
||||
ul.messages li {
|
||||
padding: calc(var(--gap) / 2) var(--gap);
|
||||
border-left: var(--border) solid var(--gray);
|
||||
}
|
||||
|
||||
ul.messages li.msg-level-25 {
|
||||
border-left-color: var(--green-1);
|
||||
}
|
||||
ul.messages li.msg-level-30 {
|
||||
border-left-color: var(--red-1);
|
||||
}
|
||||
ul.messages li.msg-level-40 {
|
||||
border-left-color: var(--red);
|
||||
}
|
||||
|
|
|
@ -88,6 +88,11 @@
|
|||
{% endspaceless %}
|
||||
{% endblock %}
|
||||
<main id="main">
|
||||
{% if messages %}
|
||||
<ul class="messages">
|
||||
{% for message in messages %}<li class="msg-level-{{ message.level }}">{{ message }}</li>{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% block body %}{% endblock %}
|
||||
</main>
|
||||
</body>
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
from account.models import Account
|
||||
from category.models import Category
|
||||
from django.contrib import messages
|
||||
from django.contrib.auth import views as auth_views
|
||||
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||
from django.urls import reverse_lazy
|
||||
from django.utils.html import format_html
|
||||
from django.utils.translation import gettext as _
|
||||
from django.views.generic import (
|
||||
CreateView,
|
||||
DeleteView,
|
||||
|
@ -55,7 +58,18 @@ class NummiCreateView(UserMixin, CreateView):
|
|||
return super().form_valid(form)
|
||||
|
||||
def get_success_url(self):
|
||||
return self.next or super().get_success_url()
|
||||
surl = super().get_success_url()
|
||||
messages.success(
|
||||
self.request,
|
||||
format_html(
|
||||
"<a href='{surl}'>{name}</a> {msg}",
|
||||
surl=surl,
|
||||
name=self.object,
|
||||
msg=_("was created successfully"),
|
||||
),
|
||||
)
|
||||
|
||||
return self.next or surl
|
||||
|
||||
|
||||
class NummiUpdateView(UserMixin, UpdateView):
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-22 15:22+0200\n"
|
||||
"POT-Creation-Date: 2023-11-25 12:05+0100\n"
|
||||
"PO-Revision-Date: 2023-04-22 15:22+0200\n"
|
||||
"Last-Translator: Edgar P. Burkhart <traduction@edgarpierre.fr>\n"
|
||||
"Language-Team: \n"
|
||||
|
@ -65,20 +65,20 @@ msgstr "Relevé"
|
|||
msgid "Statements"
|
||||
msgstr "Relevés"
|
||||
|
||||
#: .\statement\templates\statement\statement_form.html:5
|
||||
#: .\statement\templates\statement\statement_form.html:4
|
||||
#: .\statement\templates\statement\statement_table.html:5
|
||||
msgid "Create statement"
|
||||
msgstr "Créer un relevé"
|
||||
|
||||
#: .\statement\templates\statement\statement_form.html:8
|
||||
#: .\statement\templates\statement\statement_form.html:7
|
||||
msgid "New statement"
|
||||
msgstr "Nouveau relevé"
|
||||
|
||||
#: .\statement\templates\statement\statement_form.html:23
|
||||
#: .\statement\templates\statement\statement_form.html:22
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
#: .\statement\templates\statement\statement_form.html:27
|
||||
#: .\statement\templates\statement\statement_form.html:24
|
||||
#: .\statement\templates\statement\statement_table.html:28
|
||||
msgid "Transactions"
|
||||
msgstr "Transactions"
|
||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-23 08:02+0200\n"
|
||||
"POT-Creation-Date: 2023-11-25 12:05+0100\n"
|
||||
"PO-Revision-Date: 2023-04-23 08:03+0200\n"
|
||||
"Last-Translator: Edgar P. Burkhart <traduction@edgarpierre.fr>\n"
|
||||
"Language-Team: \n"
|
||||
|
@ -69,7 +69,7 @@ msgid "Account"
|
|||
msgstr "Compte"
|
||||
|
||||
#: .\transaction\models.py:83
|
||||
#: .\transaction\templates\transaction\transaction_archive_month.html:12
|
||||
#: .\transaction\templates\transaction\transaction_archive_month.html:11
|
||||
#: .\transaction\templates\transaction\transaction_list.html:4
|
||||
#: .\transaction\templates\transaction\transaction_list.html:7
|
||||
msgid "Transactions"
|
||||
|
@ -108,7 +108,7 @@ msgstr "Supprimer"
|
|||
msgid "No invoice"
|
||||
msgstr "Aucune facture"
|
||||
|
||||
#: .\transaction\templates\transaction\transaction_archive_month.html:15
|
||||
#: .\transaction\templates\transaction\transaction_archive_month.html:14
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
|
|
Loading…
Reference in a new issue