- Language: en
57 results for _meta in version 5.2
-
Model _meta API
- … meta API class Options [source] 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 …
-
Migration Operations
- … Meta class. bases is an optional list of other classes to have this model inherit …
-
Customizing authentication in Django
- … Meta ( UserCreationForm . Meta ): model = CustomUser fields = UserCreationForm . Meta . fields + ( "custom_field" ,) Custom users …