utils.feedgenerator.SyndicationFeed.add_item_elements()

add_item_elements(handler, item) [source] Add elements on each item (i.e. item/entry) element.

apps.AppConfig

class AppConfig [source] Application configuration objects store metadata for an application. Some attributes can be configured in AppConfig subclasses. Others are set by Django and read-only.

auth.backends.RemoteUserBackend.user_can_authenticate()

RemoteUserBackend.user_can_authenticate() New in Django 1.10. Returns whether the user is allowed to authenticate. This method returns False for users with is_active=False. Custom user models that don’t have an is_active field are allowed.

views.generic.dates.DayMixin.get_day_format()

get_day_format() [source] Returns the strftime() format to use when parsing the day. Returns day_format by default.

views.generic.edit.FormMixin.get_context_data()

get_context_data(**kwargs) New in Django 1.9. Calls get_form() and adds the result to the context data with the name ‘form’.

views.generic.base.TemplateResponseMixin.template_engine

template_engine The NAME of a template engine to use for loading the template. template_engine is passed as the using keyword argument to response_class. Default is None, which tells Django to search for the template in all configured engines.

db.migrations.operations.DeleteModel

class DeleteModel(name) [source] Deletes the model from the project history and its table from the database.

views.generic.list.MultipleObjectMixin.paginate_orphans

paginate_orphans An integer specifying the number of “overflow” objects the last page can contain. This extends the paginate_by limit on the last page by up to paginate_orphans, in order to keep the last page from having a very small number of objects.

contenttypes.admin.GenericTabularInline

class GenericTabularInline

admin.AdminSite.index_template

AdminSite.index_template Path to a custom template that will be used by the admin site main index view.