検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 67 for label (0.059 sec.)
django.apps.config — Django 4.0.6 ドキュメント 7781
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... across a Django project. if not hasattr ( self , "label" ): self . label = app_name . rpartition ( "." )[ ... 2 ] if not self . label . isidentifier (): raise ImproperlyConfigured ( "T ... he app label ' %s ' is not a valid Python identifier." % self . ... label ) # Human-readable name for the application e.g. " ...
https://man.plustar.jp/django/_modules/django/apps/config.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 7710
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tches the pattern test*.py . In addition, the test labels provided to ./manage.py test to nominate specific ... dotted paths (or directory paths), rather than applabel.TestCase.test_method_name pseudo-paths. This allow ... lized (by setting localize on the form field). The labels , help_texts and error_messages options may be us ... lazily by using the iterator() method. BoundField.label_tag now includes the form's label_suffix ¶ This is ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 7554
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... クト全体の中で固有である必要があります。 AppConfig. label ¶ アプリケーション用のショートネーム 例 "'admin'" ... This attribute allows relabeling an application when two applications have confl ... icting labels. It defaults to the last component of name . It s ... e.g. "Administration". This attribute defaults to label.title() . AppConfig. path ¶ Filesystem path to the ...
https://man.plustar.jp/django/ref/applications.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 7354
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ogether, uniquely describe an installed model: app_label ¶ The name of the application the model is part of ... . This is taken from the app_label attribute of the model, and includes only the last ... contrib.contenttypes , for example, becomes an app_label of contenttypes . model ¶ The name of the model cl ... ype will be created with the following values: app_label will be set to 'sites' (the last part of the Pytho ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 7354
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ame database are allowed. allow_migrate ( db , app_label , model_name = None , ** hints ) ¶ Determine if th ... run, or None if the router has no opinion. The app_label positional argument is the label of the applicatio ... auth and contenttypes applications. """ route_app_labels = { 'auth' , 'contenttypes' } def db_for_read ( s ... s models go to auth_db. """ if model . _meta . app_label in self . route_app_labels : return 'auth_db' retu ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
モデルからフォームを作成する — Django 4.0.6 ドキュメント 7269
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 合は required=True となります。 フォームフィールドの label はモデルフィールドの verbose_name の最初の文字を大 ... { 'unique_together' : " %(model_name)s 's %(field_labels)s are not unique." , } } save() メソッド ¶ Every ... をさらにカスタマイズしたい場合、内部の Meta クラスの labels 、 help_texts 、 error_messages と言った属性を指定 ... uthor fields = ( 'name' , 'title' , 'birth_date' ) labels = { 'name' : _ ( 'Writer' ), } help_texts = { 'na ...
https://man.plustar.jp/django/topics/forms/modelforms.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 7155
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ready() method of their configuration. Application labels are assigned correctly to models even when they'r ... d outside of models.py . You don't have to set app_label explicitly any more. It is possible to omit models ... ion doesn't have any models. Applications can be relabeled with the label attribute of application configur ... ations, to work around label conflicts. The name of applications can be customi ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 7042
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ib.auth.hashers.BCryptPasswordHasher' . Moved wrap_label widget template context variable ¶ To fix the lack ... of <label> when using RadioSelect and CheckboxSelectMultiple ... with MultiWidget , the wrap_label context variable now appears as an attribute of ea ... stom input_option.html template, change {% if wrap_label %} to {% if widget.wrap_label %} . SameSite cookie ...
https://man.plustar.jp/django/releases/2.1.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 6999
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... fied permission, where perm is in the format "<app label>.<permission codename>" . (see documentation on pe ... ermissions, where each perm is in the format "<app label>.<permission codename>" . If the user is inactive, ... y permissions in the given package (the Django app label). If the user is inactive, this method will always ... have the given permission perm either in the "<app label>.<permission codename>" format or as a Permission ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 6956
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or later use. pass def state_forwards ( self , app_label , state ): # The Operation should take the 'state' ... occurred. pass def database_forwards ( self , app_label , schema_editor , from_state , to_state ): # The O ... database. pass def database_backwards ( self , app_label , schema_editor , from_state , to_state ): # If re ... dels available: def database_forwards ( self , app_label , schema_editor , from_state , to_state ): # This ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT