From 25d93483a3ed00036e69681f4f809b80b7ad15a3 Mon Sep 17 00:00:00 2001 From: ARYAN-NIKNEZHAD Date: Tue, 29 Oct 2024 01:18:14 +0330 Subject: [PATCH 1/2] docs(sage_invoice): Update README file for adding required apps for package Closes(#20) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7f314cf..7e1a868 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,8 @@ Add `django-sage-invoice` to your `INSTALLED_APPS` in the Django settings and co ```python INSTALLED_APPS = [ # other packages + "django_jsonform", + "import_export", "sage_tools", "sage_invoice", ] From e47fa3b6d2fe5b4a2380a6c8cefaea2a6faad60c Mon Sep 17 00:00:00 2001 From: ARYAN-NIKNEZHAD Date: Wed, 30 Oct 2024 12:34:19 +0330 Subject: [PATCH 2/2] docs(sage_invoice): Add django.contrib.humanize app to the required apps --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7e1a868..1922838 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,7 @@ Add `django-sage-invoice` to your `INSTALLED_APPS` in the Django settings and co ```python INSTALLED_APPS = [ # other packages + "django.contrib.humanize", "django_jsonform", "import_export", "sage_tools",