You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,6 +120,15 @@ MIDDLEWARE = [
120
120
]
121
121
```
122
122
123
+
Enable Django i18n URLs so `{% url 'set_language' %}` is available for the navigation language picker:
124
+
```python
125
+
from django.urls import include, path
126
+
127
+
urlpatterns = [
128
+
path("i18n/", include("django.conf.urls.i18n")),
129
+
]
130
+
```
131
+
123
132
## 🔍 Audit Logging
124
133
125
134
Built-in optional audit app that automatically tracks all admin create, update, delete, and bulk operations with field-level diffs, snapshots, and request grouping. Just add `"django_smartbase_admin.audit"` to `INSTALLED_APPS` and run migrations.
0 commit comments