- Language: en
54 results for _meta in version 4.1
-
Model _meta API
- … meta API class Options The model _meta API is at the core of the Django …
-
Model Meta options
- … Meta . Available Meta options abstract Options. abstract If abstract = True , this model will be an abstract …
-
Meta-documentation and miscellany
- … Meta-documentation and miscellany Documentation that we can’t find a more organized place for. Like …
-
Models
- … Meta : abstract = True ordering = [ 'name' ] class Student ( CommonInfo ): # ... class Meta ( CommonInfo . Meta ): db_table …
-
Django 1.6 release notes
- … Meta options. Fields included in the localized_fields list will be localized (by setting localize …
-
Creating forms from models
- … Meta ( ArticleForm . Meta ): ... exclude = ( 'body' ,) This adds the extra method from the EnhancedArticleForm …
-
Request and response objects
- … META : if ',' in request . META [ field ]: parts = request . META [ field ] . split ( ',' ) request …
-
Translation
- … meta . verbose_name else : name = Report . _meta . verbose_name_plural text = ngettext ( 'There is %(count …
-
Customizing authentication in Django
- … Meta ( UserCreationForm . Meta ): model = CustomUser fields = UserCreationForm . Meta . fields + ( 'custom_field' ,) Custom users …
-
Django 1.8 release notes
- … meta . get_all_related_objects () [<ManyToOneRel: polls.choice>] >>> p . _meta . get_all_related …