検索

phrase: max: clip:
target: order:
Results of 561 - 570 of about 572 for up (0.194 sec.)
セキュリティ上の問題のアーカイブ — Django 4.0.6 ドキュメント 2691
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » セキュリティ上の問題のアーカイブ ¶ Django ... ョンのリストには、情報公開時点での stable、security-supported リリースのバージョンのみが記載されています。 ... 2022-23833 ¶ Denial-of-service possibility in file uploads. Full description 影響を受けるバージョン ¶ Dj ... 7, 2021 - CVE-2021-44420 ¶ Potential bypass of an upstream access control based on URL paths. Full desc ...
https://man.plustar.jp/django/releases/security.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 2691
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » Djangoの認証システムを使用する ¶ このドキ ... う、ただひとつのクラスのみが存在します。すなわち、 'superusers' または admin 'staff' ユーザは、Userオブジェ ... こともできます。 スーパーユーザを作成する ¶ Create superusers using the createsuperuser command: $ python ... manage.py createsuperuser --username=joe --email=joe@example.com パスワ ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
メールを送信する — Django 4.0.6 ドキュメント 2691
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » メールを送信する ¶ Although Python provid ... erface via the smtplib module, Django provides a couple of light wrappers over it. These wrappers are pr ... email sending during development, and to provide support for platforms that can't use SMTP. コードは dj ... あります)。 send_mass_mail() ¶ send_mass_mail ( datatuple , fail_silently = False , auth_user = None , aut ...
https://man.plustar.jp/django/topics/email.html - [similar]
Form fields — Django 4.0.6 ドキュメント 2616
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » Form fields ¶ class Field ( ** kwargs ) ¶ ... Field class assumes the value is required, so if you pass an empty value -- either None or the empty str ... alse ) 'False' If a Field has required=False and you pass clean() an empty value, then clean() will retu ... widget . We also specify the value returned when you provide an empty value (see the section on required ...
https://man.plustar.jp/django/ref/forms/fields.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 2616
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » Django 1.10 リリースノート ¶ 2016年8月1日 ... 既存のプロジェクトをアップデートするときは、 How to upgrade Django to a newer version ガイドに従ってくださ ... ベース上の複数のフィールドに渡る検索を行い、他の lookup による検索結果と組み合わせ、別の言語設定や重み付け ... なりました。これを利用するには、 trigram_similar lookup、 TrigramSimilarity 、 TrigramDistance 式を使ってく ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 2616
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » Django の認証方法のカスタマイズ ¶ Django ... ame = username ) user . is_staff = True user . is_superuser = True user . save () return user return Non ... ルックアップ関数 ( get_user_permissions() 、 get_group_permissions() 、 get_all_permissions() 、 has_perm ... you use a custom authentication backend that can support non-unique usernames. 以下の例では、フィールド ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
フォームを使う — Django 4.0.6 ドキュメント 2616
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » フォームを使う ¶ このドキュメントについて ... access to sensitive parts of the system. POST , coupled with other protections like Django's CSRF prote ... アップロードを処理する方法の詳細については、 Binding uploaded files to a form を参照してください。 フォーム ... ors }} at the top of the form and the template lookup for errors on each field. Using {{ form.name_of_fi ...
https://man.plustar.jp/django/topics/forms/index.html - [similar]
セッションの使いかた — Django 4.0.6 ドキュメント 2616
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » セッションの使いかた ¶ Django は、匿名のセ ... r that can reliably get back the same thing that you put in is more fragile. For example, you run the ri ... def create_model_instance ( self , data ): obj = super () . create_model_instance ( data ) try : accoun ... キャッシュ , ユーザ , データベース クイック検索 Last update: 2022年6月01日 « previous | up | next » ...
https://man.plustar.jp/django/topics/http/sessions.html - [similar]
フォーム API — Django 4.0.6 ドキュメント 2548
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » フォーム API ¶ このドキュメントについて こ ... when building forms where the layout is dependent upon the widget type. For example: { % for field in f ... late with {{ form.coordinates.country }} . Binding uploaded files to a form ¶ Dealing with forms that ha ... mplicated than a normal form. Firstly, in order to upload files, you'll need to make sure that your <for ...
https://man.plustar.jp/django/ref/forms/api.html - [similar]
組み込みタグとフィルタ — Django 4.0.6 ドキュメント 2548
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Table of contents | Index | Modules « previous | up | next » 組み込みタグとフィルタ ¶ このドキュメント ... ght {{ current_year }}{% endblocktranslate %} regroup ¶ オブジェクトのリストから、同じ属性値を持つオブジ ... : 7,000,000 Japan Tokyo: 33,000,000 ここで {% regroup %} タグを使って都市のリストを国別にグループ化するこ ... るためのテンプレートコードのスニペットです: {% regroup cities by country as country_list %} < ul > {% for ...
https://man.plustar.jp/django/ref/templates/builtins.html - [similar]