検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 135 for names (0.030 sec.)
クラスベース汎用ビュー - フラットインデックス — Django 4.0.6 ドキュメント 17042
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... lass View ¶ 属性 (と省略可能な継承元): http_method_names メソッド as_view() dispatch() head() http_method_n ... 能な継承元): content_type extra_context http_method_names response_class [ render_to_response() ] template_e ... ngine template_name [ get_template_names() ] メソッド as_view() dispatch() get() get_contex ... irectView ¶ 属性 (と省略可能な継承元): http_method_names pattern_name permanent query_string url [ get_redi ...
https://man.plustar.jp/django/ref/class-based-views/flattened-index.html - [similar]
Model Meta options — Django 4.0.6 ドキュメント 10867
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... use for the model: db_table = 'music_album' Table names ¶ To save you time, Django automatically derives t ... characters that aren't allowed in Python variable names -- notably, the hyphen -- that's OK. Django quotes ... column and table names behind the scenes. Use lowercase table names for M ... t is strongly advised that you use lowercase table names when you override the table name via db_table , pa ...
https://man.plustar.jp/django/ref/models/options.html - [similar]
Simple mixins — Django 4.0.6 ドキュメント 8990
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... structor of the response class. Calls get_template_names() to obtain the list of template names that will b ... hed looking for an existent template. get_template_names () ¶ Returns a list of template names to search fo ... 関連キーワード template , context , mixins , use , names , TemplateResponse , list , instance , data , Defa ...
https://man.plustar.jp/django/ref/class-based-views/mixins-simple.html - [similar]
Django 1.1 リリースノート — Django 4.0.6 ドキュメント 8147
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pgrade your code if they do. Changes to constraint names ¶ Django 1.1 modifies the method used to generate ... database constraint names so that names are consistent regardless of machine ... dFor as a piece of middleware in your own project. Names of uploaded files are available later ¶ In Django ... s named URL patterns with the introduction of URL "namespaces." In short, this feature allows the same grou ...
https://man.plustar.jp/django/releases/1.1.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 7582
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... de. Tablespace support in PostgreSQL. Customizable names for simple_tag() . In the documentation, a helpful ... method now accepts an optional list of model field names. If specified, then the DISTINCT statement is limi ... r get the files from a previous release. CSS class names in admin forms ¶ To avoid conflicts with other com ... mon CSS class names (e.g. "button"), we added a prefix ("field-") to a ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 7305
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n command and a list of its available options. App names ¶ Many commands take a list of "app names." An "ap ... e entire application. You can also mix application names and model names. If you want to exclude multiple a ... database tables in the database pointed-to by the NAME setting and outputs a Django model module (a models ... e what tables or views to inspect by passing their names as arguments. If no arguments are provided, models ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 7209
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ass and then refer to it, defining the choices and names for each choice inside the model class keeps all o ... ion classes -- .choices , .labels , .values , and .names -- to make it easier to access lists of those sepa ... choices in a field definition. 警告 These property names cannot be used as member names as they would confl ... bers. If you don't need to have the human-readable names translated, you can have them inferred from the me ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 7112
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... odel ( ** kwargs ) ¶ The keyword arguments are the names of the fields you've defined on your model. Note t ... マイズする ¶ classmethod Model. from_db ( db , field_names , values ) ¶ from_db() メソッドを使うと、データベー ... 象となるデータベースへのエイリアスになります、 field_names は読み込まれるすべてのフィールドの名前を持ち、そし ... て values は field_names 内各フィールドに対応した値を持ちます。 field_names ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
TemplateResponse and SimpleTemplateResponse — Django 4.0.6 ドキュメント 7028
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ) ), the name of a template, or a list of template names. Example: ['foo.html', 'path/to/bar.html'] SimpleT ... ) ), the name of a template, or a list of template names. context A dict of values to add to the template c ... ) ), the name of a template, or a list of template names. Returns the backend-dependent template object ins ... ) ), the name of a template, or a list of template names. context A dict of values to add to the template c ...
https://man.plustar.jp/django/ref/template-response.html - [similar]
Django 0.96 リリースノート — Django 4.0.6 ドキュメント 7028
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... タベース名の制約変更 ¶ The format of the constraint names Django generates for foreign key references have c ... hanged slightly. These names are generally only used when it is not possible to ... it the generated SQL to use the correct constraint names before executing it. Examine the output of manage. ... py sqlall to see the new-style constraint names, and use that as a guide to rename existing constr ...
https://man.plustar.jp/django/releases/0.96.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT