検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 216 for contrib (0.032 sec.)
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 7716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 新しくなったこと ¶ PostgreSQL での全文検索 ¶ django.contrib.postgres には、新しく データベース関数のコレクショ ... ユーザー名の公式サポート ¶ The User model in django.contrib.auth originally only accepted ASCII letters and nu ... tor を使うこともできます。 マイナーな機能 ¶ django.contrib.admin ¶ サブパス (subpath) で動作しているサイトで ... 1.4 から 2.2.3 にアップグレードされました。 django.contrib.auth ¶ Added support for the Argon2 password hash ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 7496
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t template, here are the requirements: Add 'django.contrib.admin' and its dependencies - django.contrib.auth ... , django.contrib.contenttypes , django.contrib.messages , and djang ... o.contrib.sessions - to your INSTALLED_APPS setting. Configu ... jango.template.context_processors.request , django.contrib.auth.context_processors.auth , and django.contrib. ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 7422
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eps: Install the sites framework by adding 'django.contrib.sites' to your INSTALLED_APPS setting, if it's not ... t could be the ID of a different site. Add 'django.contrib.flatpages' to your INSTALLED_APPS setting. Then ei ... rlpatterns = [ path ( 'pages/' , include ( 'django.contrib.flatpages.urls' )), ] or: Add 'django.contrib.flat ... rlpatterns = [ path ( 'pages/' , include ( 'django.contrib.flatpages.urls' )), ] You can also set it up as a ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 7359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dear friend and developer. Malcolm was a long-time contributor to Django, a model community member, a brillia ... nt mind, and a friend. His contributions to Django — and to many other open source pr ... raded to version 1.9.1. Syndication feeds ( django.contrib.syndication ) can now pass extra context through t ... . When giving the URL of the next page for django.contrib.auth.views.logout() , django.contrib.auth.views.pa ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
The "sites" framework — Django 4.0.6 ドキュメント 7044
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ManyToManyField in the Article model: from django.contrib.sites.models import Site from django.db import mod ... nt site. It looks something like this: from django.contrib.sites.shortcuts import get_current_site def articl ... gle site, you'd use a model like this: from django.contrib.sites.models import Site from django.db import mod ... is to check the current site's domain: from django.contrib.sites.shortcuts import get_current_site def my_vie ...
https://man.plustar.jp/django/ref/contrib/sites.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 6950
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 認証バックエンド」のリストを保持しています。 django.contrib.auth.authenticate() を誰かがコールすると -- どのよ ... ENDS は以下の値として定義されています。: [ 'django.contrib.auth.backends.ModelBackend' ] That's the basic aut ... ost of the time, it'll look like this: from django.contrib.auth.backends import BaseBackend class MyBackend ( ... 方、次のように認証トークンでも表せます: from django.contrib.auth.backends import BaseBackend class MyBackend ( ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
Django 2.0 リリースノート — Django 4.0.6 ドキュメント 6887
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... トをアップデートしています。 モバイルフレンドリーな contrib.admin ¶ admin サイトがレスポンシブになり、主要な全 ... gate 関数 が使用できます。 マイナーな機能 ¶ django.contrib.admin ¶ The new ModelAdmin.autocomplete_fields att ... widget for ForeignKey and ManyToManyField . django.contrib.auth ¶ The default iteration count for the PBKDF2 ... hasher is increased from 36,000 to 100,000. django.contrib.gis ¶ Added MySQL support for the AsGeoJSON functi ...
https://man.plustar.jp/django/releases/2.0.html - [similar]
Django 4.0 release notes — Django 4.0.6 ドキュメント 6887
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... et rendering for Formset . マイナーな機能 ¶ django.contrib.admin ¶ The admin/base.html template now has a new ... ry is upgraded from version 3.5.1 to 3.6.0. django.contrib.admindocs ¶ The admindocs now allows esoteric setu ... the admindocs now shows cached properties. django.contrib.auth ¶ The default iteration count for the PBKDF2 ... allow customizing the redirect after login. django.contrib.gis ¶ Added support for SpatiaLite 5. GDALRaster n ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 6855
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... いうヘルパー関数を利用することです。 >>> from django.contrib.auth.models import User >>> user = User . objects ... パスワードを変更することもできます: >>> from django.contrib.auth.models import User >>> u = User . objects . g ... 、 None が返されます。以下は実装例です: from django.contrib.auth import authenticate user = authenticate ( use ... missions . clear () デフォルトの権限 ¶ When django.contrib.auth is listed in your INSTALLED_APPS setting, it ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 6824
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d password hashing ¶ Django's auth system ( django.contrib.auth ) stores passwords using a one-way algorithm. ... form wizard ¶ The previous FormWizard from django.contrib.formtools has been replaced with a new implementat ... ore details. static template tag ¶ The staticfiles contrib app has a new static template tag to refer to file ... aticFilesStorage storage backend ¶ The staticfiles contrib app now has a django.contrib.staticfiles.storage.C ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT