Skip to content

Commit

Permalink
Add All Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sinalalebakhsh committed Jul 23, 2024
1 parent 4797666 commit 8b79aff
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
9 changes: 9 additions & 0 deletions Steps/offline developing Django App.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1131,6 +1131,15 @@ urlpatterns = [


# Add in config/settings.py -> INSTALLED_APPS [..., here]
INSTALLED_APPS = [
...
...
# Packages
"rosetta",
...
...
]




12 changes: 11 additions & 1 deletion config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,21 @@
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
#
#
#-------------------------------------------------
# Packages
"crispy_forms",
"crispy_bootstrap4",
"allauth",
"allauth.account",
"rosetta",
#
#
#
#
#
#-------------------------------------------------
# APPs
"accounts.apps.AccountsConfig",
"pages.apps.PagesConfig",
Expand Down Expand Up @@ -133,7 +143,7 @@
TIME_ZONE = "Asia/Tehran"

USE_I18N = True
USE_L10N = True # Localization
USE_L10N = True # Localization
USE_TZ = True


Expand Down

0 comments on commit 8b79aff

Please sign in to comment.