検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 312 for use (0.068 sec.)
How to manage error reporting — Django 4.0.6 ドキュメント 4450
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... need to specify EMAIL_HOST and possibly EMAIL_HOST_USER and EMAIL_HOST_PASSWORD , though other settings m ... l providers reject all email from this address. To use a different sender address, modify the SERVER_EMAI ... If those conditions are met, Django will email the users listed in the MANAGERS setting whenever your cod ... efault, these log records are ignored, but you can use them for error reporting by writing a handler and ...
https://man.plustar.jp/django/howto/error-reporting.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 4450
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... getting started: A GPG key. If the key you want to use is not your default signing key, you'll need to ad ... email address associated with the key you want to use. An install of some required Python packages: $ py ... e a file with your credentials: ~/.pypirc ¶ [pypi] username:YourUsername password:YourPassword Access to ... ion recipients. Sign the email with the key you'll use for the release and include CVE IDs (requested wit ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 4450
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 法の詳細は、 認証トピックガイド を参照してください。 User モデル ¶ class models. User ¶ フィールド ¶ class ... models. User User オブジェクトには、以下のフィールドがあります ... : username ¶ 必須です。150 文字以下です。英数字のほか、 ... roups ¶ Group への多対多のリレーションシップです。 user_permissions ¶ Permission への多対多のリレーション ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]
GeoDjango Forms API — Django 4.0.6 ドキュメント 4450
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... edit geolocalized data on a map. By default, they use OpenLayers -powered maps, with a base WMS layer pr ... get SRID is different from the SRID more generally used by your application or database, the field will a ... 400x600). BaseGeometryWidget. map_srid ¶ SRID code used by the map (default is 4326). BaseGeometryWidget. ... . BaseGeometryWidget. template_name ¶ The template used to render the map widget. You can pass widget att ...
https://man.plustar.jp/django/ref/contrib/gis/forms-api.html - [similar]
Djangoの設定 — Django 4.0.6 ドキュメント 4450
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 定ファイルの指定 ¶ DJANGO_SETTINGS_MODULE ¶ When you use Django, you have to tell it which settings you're ... のは、設定ファイルの中だけです。 セキュリティ ¶ Because a settings file contains sensitive information, su ... permissions so that only you and your web server's user can read it. This is especially important in a sh ... e() and is needed at some later point, Django will use the default setting value. Configuring Django in t ...
https://man.plustar.jp/django/topics/settings.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 4413
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ne AppConfig subclass in the apps.py submodule, it uses that configuration for the application. This beha ... h different behaviors. To tell Django which one to use by default, set default to True in its definition. ... If your users want to pick a non-default configuration, they m ... _app_config variable in the application module was used to identify the default application configuration ...
https://man.plustar.jp/django/ref/applications.html - [similar]
GIS QuerySet API リファレンス — Django 4.0.6 ドキュメント 4413
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... geometry fields and inputs, but the lookups can be used the same way with rasters on both sides. Whenever ... duction to raster lookups . The database operators used by the lookups can be divided into three categori ... geometry. The intersection pattern matrix may only use the following characters: 1 , 2 , T , F , or * . T ... his lookup type allows users to "fine tune" a specific geometric relationship ...
https://man.plustar.jp/django/ref/contrib/gis/geoquerysets.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 4413
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... that is done. In this case it would be possible to use a super() call in the from_db() method. データベー ... s contained in e.message_dict. # Display them to a user, or handle them programmatically. pass full_clean ... ghts on cheese.' ) >>> b2 . id # Returns None, because b2 doesn't have an ID yet. >>> b2 . save () >>> b2 ... alue of an ID will be before you call save() , because that value is calculated by your database, not by ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
フォームアセット (Media クラス) — Django 4.0.6 ドキュメント 4413
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... edia クラス) ¶ Rendering an attractive and easy-to-use web form requires more than just HTML - it also re ... quires CSS stylesheets, and if you want to use fancy widgets, you may also need to include some J ... iven page will depend upon the widgets that are in use on that page. This is where asset definitions come ... require those assets. For example, if you want to use a calendar to render DateFields, you can define a ...
https://man.plustar.jp/django/topics/forms/media.html - [similar]
django.utils.translation — Django 4.0.6 ドキュメント 4376
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ems: (1) access settings, in particular # settings.USE_I18N, as late as possible, so that modules can be ... l to that function. After this is done, changes to USE_I18N will have no effect to which function is serv ... ed upon request. If your tests rely on changing USE_I18N, you can delete all the functions from _trans ... ): from django.conf import settings if settings . USE_I18N : from django.utils.translation import trans_ ...
https://man.plustar.jp/django/_modules/django/utils/translation.html - [similar]