検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 149 for form (0.060 sec.)
Form fields — Django 4.0.6 ドキュメント 7987
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ontents | Index | Modules « previous | up | next » Form fields ¶ class Field ( ** kwargs ) ¶ Form クラスを ... 作成時の一番重要な部分は、form のフィールド (field) の定義です。各フィールドにはカ ... ugh the primary way you'll use Field classes is in Form classes, you can also instantiate them and use the ... or returns the clean value: >>> from django import forms >>> f = forms . EmailField () >>> f . clean ( 'fo ...
https://man.plustar.jp/django/ref/forms/fields.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 7777
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... be an inspiration to us. This release of Django is for Malcolm. -- The Django Developers November 6, 2013 ... ction handling more explicit and should improve performance. The existing APIs were deprecated, and new AP ... our codebase, rather than only in INSTALLED_APPS . For more details, see Django におけるテスト . This chan ... with QuerySet.dates() : aggregation was always performed in UTC. This limitation was lifted in Django 1.6 ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
GeoDjango Forms API — Django 4.0.6 ドキュメント 7671
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Index | Modules « previous | up | next » GeoDjango Forms API ¶ GeoDjango provides some specialized form fi ... ASA . Field arguments ¶ In addition to the regular form field arguments , GeoDjango form fields take the f ... the SRID code that the field value should be transformed to. For example, if the map widget SRID is diffe ... ss. It matches the OpenGIS standard geometry name. Form field classes ¶ GeometryField ¶ class GeometryFiel ...
https://man.plustar.jp/django/ref/contrib/gis/forms-api.html - [similar]
PostgreSQL specific form fields and widgets — Django 4.0.6 ドキュメント 7636
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dules « previous | up | next » PostgreSQL specific form fields and widgets ¶ All of these fields and widge ... ts are available from the django.contrib.postgres.forms module. フィールド ¶ SimpleArrayField ¶ class Sim ... s a required argument. It specifies the underlying form field for the array. This is not used to render an ... d validate it. For example: >>> from django import forms >>> from django.contrib.postgres.forms import Sim ...
https://man.plustar.jp/django/ref/contrib/postgres/forms.html - [similar]
クラスベースのビューでミックスインを使用する — Django 4.0.6 ドキュメント 7577
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e also mixins involved in the generic edit views ( FormView , and the model-specific views CreateView , Up ... g else. (For instance, the generic edit views use _form for create and update views, and _confirm_delete f ... look at a naive attempt to combine DetailView with FormMixin to enable us to POST a Django Form to the sam ... playing an object using DetailView . DetailView で FormMixin を使用する ¶ Think back to our earlier exampl ...
https://man.plustar.jp/django/topics/class-based-views/mixins.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 7378
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the convenient user_passes_test decorator which performs a redirect when the callable returns False : from ... method of the class to provide the test that is performed. Furthermore, you can set any of the parameters ... e the has_perm() method, permission names take the form "<app label>.<permission codename>" (i.e. polls.ad ... hange ( request ): if request . method == 'POST' : form = PasswordChangeForm ( user = request . user , dat ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
クラスベースビュー入門 — Django 4.0.6 ドキュメント 7355
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... のない属性の形で多くのフックを持っています。例えば、 form_class``のクラスベースの属性に制限する代わりに、実装 ... では ``get_form メソッドを使用しており、 get_form_class メソッドを ... とえば、リストの先頭にあるフォームを使用して ProcessFormView と ListView を組み合わせようとすると - 期待通り ... Redirect from django.shortcuts import render from .forms import MyForm def myview ( request ): if request ...
https://man.plustar.jp/django/topics/class-based-views/intro.html - [similar]
クラスベース汎用ビュー - フラットインデックス — Django 4.0.6 ドキュメント 7121
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ender_to_response() setup() 編集するためのビュー ¶ FormView ¶ class FormView ¶ 属性 (と省略可能な継承元): ... content_type extra_context form_class [ get_form_class() ] http_method_names initi ... t_template_names() ] メソッド as_view() dispatch() form_invalid() form_valid() get() get_context_data() ge ... t_form() get_form_kwargs() http_method_not_allowed() post ...
https://man.plustar.jp/django/ref/class-based-views/flattened-index.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 7121
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... routers is now called allow_migrate , but still performs the same function. Routers with allow_syncdb meth ... own checks for your own apps and libraries. To perform system checks, you use the check management comman ... s with different querysets. See prefetch_related() for more details. Admin shortcuts support time zones ¶ ... t is now possible to write custom lookups and transforms for the ORM. Custom lookups work just like Django ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
フォーム — Django 4.0.6 ドキュメント 7062
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... を参照してください。 フォーム API Bound and unbound forms フォームをデータの検証に使用する Initial form val ... Customizing BoundField Binding uploaded files to a form Subclassing forms Prefixes for forms Form fields f ... ips Creating custom fields モデルフォーム関数 modelform_factory modelformset_factory inlineformset_factory ... Formset Functions formset_factory The form rendering AP ...
https://man.plustar.jp/django/ref/forms/index.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT