1 2 3 4 5 6 7 8 9 10 11 | python manage.py shell
# Aggiunge i content types
from django.contrib.contenttypes.management import create_all_contenttypes
create_all_contenttypes()
# Aggiunge i permessi
from django.contrib.auth.management import create_permissions
from django.db.models import get_apps
for app in get_apps():
create_permissions(app, None, 2)
|
More like this
- Debug SQL Query in Template by dario.agliottone 1 year ago
- Update ContentTypes and Permissions without syncdb by paltman 5 years, 1 month ago
- Update ContentTypes and Permissions without syncdb by paltman 5 years, 1 month ago
- Update ContentTypes and Permissions without syncdb by paltman 5 years, 1 month ago
- Custom FileField with content type and size validation by nemesis 2 years, 8 months ago
Comments
english please
#