Home | History | Annotate | Download | only in afe

Lines Matching refs:django

2 Extensions to Django's model logic.
5 import django.core.exceptions
6 from django.db import connection
7 from django.db import connections
8 from django.db import models as dbmodels
9 from django.db import transaction
10 from django.db.models.sql import query
11 import django.db.models.sql.where
17 class ValidationError(django.core.exceptions.ValidationError):
85 """Object allowing us to inject arbitrary SQL into Django queries.
186 @param m2m_field: a Django field representing the M2M relationship.
268 django.db.models.sql.where.AND)
327 is the Django field object for the relationship.
357 Note -- this depends on Django model internals.
596 Validate that unique fields are unique. Django manipulators do
631 Based on validate() from django.db.models.Model in Django 0.96, which
632 was removed in Django 1.0. It should reappear in a later version. See:
640 except django.core.exceptions.ValidationError, e:
709 regular_filters is the remaining data to be handled by Django.
753 -extra_args: keyword args to pass to query.extra() (see Django
1028 @param filter_args: Arguments for the django filter
1202 @param related_class: A class representing a django model, with which