Aggiornare i Content Types e i Permessi del Model di una Tabella nell Admin

 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

  1. Debug SQL Query in Template by dario.agliottone 1 year, 1 month ago
  2. Update ContentTypes and Permissions without syncdb by paltman 5 years, 2 months ago
  3. Update ContentTypes and Permissions without syncdb by paltman 5 years, 2 months ago
  4. Update ContentTypes and Permissions without syncdb by paltman 5 years, 2 months ago
  5. Custom FileField with content type and size validation by nemesis 2 years, 8 months ago

Comments

kunitoki (on May 15, 2012):

english please

#

(Forgotten your password?)