検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 67 for label (0.015 sec.)
フォーム API — Django 4.0.6 ドキュメント 13614
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... " required></td></tr>' >>> f . fields [ 'name' ] . label = "Username" >>> f . as_table () . split ( ' \n ' ... とになるためです。 >>> f . base_fields [ 'name' ] . label = "Username" >>> another_f = CommentForm ( auto_id ... す: >>> f = ContactForm () >>> print ( f ) <tr><th><label for="id_subject">Subject:</label></th><td><input i ... ject" maxlength="100" required></td></tr> <tr><th><label for="id_message">Message:</label></th><td><input t ...
https://man.plustar.jp/django/ref/forms/api.html - [similar]
フォームセット (Formset) — Django 4.0.6 ドキュメント 11423
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... formset : ... print ( form . as_table ()) <tr><th><label for="id_form-0-title">Title:</label></th><td><inpu ... -0-title" id="id_form-0-title"></td></tr> <tr><th><label for="id_form-0-pub_date">Pub date:</label></th><td ... formset : ... print ( form . as_table ()) <tr><th><label for="id_form-0-title">Title:</label></th><td><inpu ... n source" id="id_form-0-title"></td></tr> <tr><th><label for="id_form-0-pub_date">Pub date:</label></th><td ...
https://man.plustar.jp/django/topics/forms/formsets.html - [similar]
ウィジェット — Django 4.0.6 ドキュメント 10954
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... id をセットすることもできます。 BoundField.id_for_label で例をご覧ください。 ウィジェットのクラスにスタイル ... m context values by overriding this method. id_for_label ( id_ ) ¶ このウィジェットのフィールドの ID が付与 ... された <label> で使われるための HTML の ID 属性を返します。 IDが ... widget: < fieldset > < legend > {{ myform.beatles.label }} </ legend > {% for radio in myform.beatles %} < ...
https://man.plustar.jp/django/ref/forms/widgets.html - [similar]
フォームを使う — Django 4.0.6 ドキュメント 10328
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... < form action = "/your-name/" method = "post" > < label for = "your_name" > Your name: </ label > < input ... ( forms . Form ): your_name = forms . CharField ( label = 'Your name' , max_length = 100 ) これは、単一のフ ... 適用してあり、このラベルはレンダリングされたときに <label> の中に表示されます (このケースでは、仮にラベルの指 ... 定を省略したとしても、実際には指定した label が自動的に生成されるラベルと同じではありますが)。 ...
https://man.plustar.jp/django/topics/forms/index.html - [similar]
Form fields — Django 4.0.6 ドキュメント 9745
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... not be correct when adding and deleting formsets. label ¶ Field. labellabel 属性は、フィールドに対する ... す。 デフォルトではない文字列を表示したい場合には、 label を指定してください。 以下は、 label を 2 つのフィー ... m ( forms . Form ): ... name = forms . CharField ( label = 'Your name' ) ... url = forms . URLField ( label ... put type="text" name="comment" required></td></tr> label_suffix ¶ Field. label_suffix ¶ label_suffix 属性は ...
https://man.plustar.jp/django/ref/forms/fields.html - [similar]
django.core.management.base — Django 4.0.6 ドキュメント 9303
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pps_waiting_migration = sorted ( { migration . app_label for migration , backwards in plan } ) self . stdou ... mand which takes one or more installed application labels as arguments, and does something with each of the ... ing_args_message = "Enter at least one application label." def add_arguments ( self , parser ): parser . ad ... d_argument ( "args" , metavar = "app_label" , nargs = "+" , help = "One or more application l ...
https://man.plustar.jp/django/_modules/django/core/management/base.html - [similar]
Model Meta options — Django 4.0.6 ドキュメント 9190
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... , this model will be an abstract base class . app_label ¶ Options. app_label ¶ If a model is defined outsi ... PPS , it must declare which app it belongs to: app_label = 'myapp' If you want to represent a model with th ... e format app_label.object_name or app_label.model_name you can use mo ... del._meta.label or model._meta.label_lower respectively. base_mana ...
https://man.plustar.jp/django/ref/models/options.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 9033
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he issue. Identifiers should follow the pattern applabel.X001 , where X is one of the letters CEWID , indic ... 301 : Field defines a relation with the model <app_label>.<model> which has been swapped out. fields.E302 : ... Reverse accessor for <app_label>.<model>.<field name> clashes with field name <app ... _label>.<model>.<field name> . fields.E303 : Reverse quer ...
https://man.plustar.jp/django/ref/checks.html - [similar]
Unit tests — Django 4.0.6 ドキュメント 8877
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s. Moreover these options cannot be used with test labels. Running the Selenium tests ¶ Some tests require ... odelTest.test_eq will pair test_eq with every test label. With both --bisect and --pair , if you already su ... ts to be cross-analyzed by specifying further test labels after the first one:   $ ./runtests.py --pair b ... odel_definition ( self ): test_apps = Apps ([ 'app_label' ]) class TestModel ( models . Model ): class Meta ...
https://man.plustar.jp/django/internals/contributing/writing-code/unit-tests.htm... - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 8293
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ailable commands ¶ check ¶ django-admin check [app_label [app_label ...]] ¶ Uses the system check framework ... check a subset of apps by providing a list of app labels as arguments: django - admin check auth admin mya ... a plus sign. dumpdata ¶ django-admin dumpdata [app_label[.ModelName] [app_label[.ModelName] ...]] ¶ 名前を指 ... plications or models (specified in the form of app_label.ModelName ) from being dumped. If you specify a mo ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT