検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 149 for form (0.065 sec.)
テストツール — Django 4.0.6 ドキュメント 6125
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... frameworks; see the section on LiveServerTestCase for more details. 包括的なテストスイートを実現するには、 ... f it's a dict, list, or tuple. Serialization is performed with DjangoJSONEncoder by default, and can be ov ... に値を渡さなかったときは、 data 内の値を multipart/form-data のコンテンツタイプとして送信します。この場合は ... exc_info ¶ A tuple of three values that provides information about the unhandled exception, if any, that o ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
Unicode data — Django 4.0.6 ドキュメント 5985
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... to store certain characters in the database, and information will be lost. MySQL users, refer to the MySQL ... your database uses: that is handled transparently. For more, see the section "The database API" below. Gen ... ith a 'b'). 警告 A bytestring does not carry any information with it about its encoding. For that reason, ... ring to Django that has been encoded in some other format, things will go wrong in interesting ways. Usual ...
https://man.plustar.jp/django/ref/unicode.html - [similar]
Django 4.0 release notes — Django 4.0.6 ドキュメント 5985
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n of datetime instances to the current timezone in forms and templates, as well as operations on aware dat ... with Redis. redis-py 3.0.0 or higher is required. For more details, see the documentation on caching with ... Redis in Django . Template based form rendering ¶ Forms , Formsets , and ErrorList are n ... w render() , get_context() , and template_name for Form and formset rendering for Formset . マイナーな機能 ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
クロスサイトリクエストフォージェリ (CSRF) 対策 — Django 4.0.6 ドキュメント 5949
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... テンプレートで、POST が内部 URL に使われる場合は、 <form> 要素の内部で csrf_token タグを使用してください。 ... < form method = "post" > {% csrf_token %} この方法は、外部 ... 言語内の {% csrf_token %} と同じ意味です。例えば: < form method = "post" > {{ csrf_input }} デコレータメソッ ... cret is changed each time a user logs in. A hidden form field with the name 'csrfmiddlewaretoken' present ...
https://man.plustar.jp/django/ref/csrf.html - [similar]
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 5949
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ey're enforced by model validation and the default form widget will be a select box with these choices ins ... choice inside the model class keeps all of that information with the class that uses it, and helps refere ... ll not be displayed in the admin or any other ModelForm . They are also skipped during model validation . ... low. These error messages often don't propagate to forms. See モデルの error_messages のレンダリングを考え ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 5949
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... able new features in Django 1.4 include: A number of ORM improvements, including SELECT FOR UPDATE support ... lity to bulk insert large datasets for improved performance, and QuerySet.prefetch_related , a method to b ... mode. In this mode, Django stores date and time information in UTC in the database, uses time-zone-aware ... them to the end user's time zone in templates and forms. Reasons for using this feature include: Customiz ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
Django 2.1.1 リリースノート — Django 4.0.6 ドキュメント 5926
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... デルへの 'add' 権限を持たない場合に、admin の change form がクラッシュするリグレッションを修正しました ( #29 ... admin change view crash for view-only users if the form has an extra form field ( #29682 ). Fixed a regres ... スノート 関連キーワード 修正 , Fixed , クラッシュ , form , change , admin , after , permission , モデル , c ...
https://man.plustar.jp/django/releases/2.1.1.html - [similar]
フォームアセット (Media クラス) — Django 4.0.6 ドキュメント 5926
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ラス) ¶ Rendering an attractive and easy-to-use web form requires more than just HTML - it also requires CS ... files -- like stylesheets and scripts -- with the forms and widgets that require those assets. For exampl ... he calendar. When the Calendar widget is used on a form, Django is able to identify the CSS and JavaScript ... required, and provide the list of file names in a form suitable for inclusion on your web page. アセットと ...
https://man.plustar.jp/django/topics/forms/media.html - [similar]
リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 5891
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... sing data in different ways than conventional HTML forms: binary images, XML payload etc. For processing c ... onventional form data, use HttpRequest.POST . You can also read fro ... g representing the current encoding used to decode form submission data (or None , which means the DEFAULT ... ute to change the encoding used when accessing the form data. Any subsequent attribute accesses (such as r ...
https://man.plustar.jp/django/ref/request-response.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 5891
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n.raw_id_fields now have a link to object's change form. Added "No date" and "Has date" choices for DateFi ... os.path calls previously in FileField . フォーム ¶ Form and widget Media is now served using django.contri ... attribute if the field has a min_length . Required form fields now have the required HTML attribute. Set t ... he new Form.use_required_attribute attribute to False to disab ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT