apps.is_installed(app_name) Application Registry in Django

apps.is_installed(app_name):-

  • Checks whether an application with the given name exists in the registry. 
  • app_name is the full name of the app, Ex: 'django.contrib.admin'.

Comments

Popular posts from this blog

Messages Framework in Django

Forms in Django(bound, unbound, clean, is_valid, errors)

Advantages to using URLField() over TextField()