検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 168 for path (0.169 sec.)
索引 — Django 4.0.6 ドキュメント 5953
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ョン showmigrations コマンドラインオプション --pythonpath コマンドラインオプション --reverse test コマンドラ ... pty_first_page (Paginator の属性) allow_files (FilePathField の属性) , [1] allow_folders (FilePathField の ... PONLY setting CSRF_COOKIE_NAME setting CSRF_COOKIE_PATH setting CSRF_COOKIE_SAMESITE setting CSRF_COOKIE_S ... EMAIL_FIELD (models.CustomUser の属性) EMAIL_FILE_PATH setting EMAIL_HOST setting EMAIL_HOST_PASSWORD set ...
https://man.plustar.jp/django/genindex.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 5919
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... se import TemplateResponse from django.urls import path class MyModelAdmin ( admin . ModelAdmin ): def get ... self ): urls = super () . get_urls () my_urls = [ path ( 'my_view/' , self . my_view ), ] return my_urls ... self ): urls = super () . get_urls () my_urls = [ path ( 'my_view/' , self . admin_site . admin_view ( se ... s Notice the wrapped view in the fifth line above: path ( 'my_view/' , self . admin_site . admin_view ( se ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
Django 3.1.13 release notes — Django 4.0.6 ドキュメント 5919
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... uld bypass intended column reference validation in path marked for deprecation resulting in a potential SQ ... s not present in the main branch as the deprecated path has been removed. 目次 Django 3.1.13 release notes ... er , QuerySet , injection , Potential , トピック , path クイック検索 Last update: 2022年6月01日 « previous ...
https://man.plustar.jp/django/releases/3.1.13.html - [similar]
クラスベースビュー — Django 4.0.6 ドキュメント 5874
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... し自体に渡すことができます: from django.urls import path from django.views.generic import TemplateView urlp ... atterns = [ path ( 'about/' , TemplateView . as_view ( template_nam ... L に指定します。 # urls.py from django.urls import path from some_app.views import AboutView urlpatterns = ... [ path ( 'about/' , AboutView . as_view ()), ] 組み込みの ...
https://man.plustar.jp/django/topics/class-based-views/index.html - [similar]
GeoDjango Tutorial — Django 4.0.6 ドキュメント 5840
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... arlier in the tutorial, then you can determine its path using Python's pathlib.Path : >>> from pathlib imp ... ort Path >>> import world >>> world_shp = Path ( world . __ ... e world application, with the following code: from pathlib import Path from django.contrib.gis.utils impor ... : 'LAT' , 'mpoly' : 'MULTIPOLYGON' , } world_shp = Path ( __file__ ) . resolve () . parent / 'data' / 'TM_ ...
https://man.plustar.jp/django/ref/contrib/gis/tutorial.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 5840
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... parent model, or None if it is not part of a model path : A dotted, Python path to the class of this field ... ty flag level 2, meaning it will show the relative paths of the directories it searched. See findstatic fo ... E_AGE , LANGUAGE_COOKIE_DOMAIN and LANGUAGE_COOKIE_PATH . Added 表示形式のローカル化 for Esperanto. 管理コ ... initial_data has been started down the deprecation path and will be removed in Django 1.9. deconstruct() a ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Django を uWSGI とともに使うには? — Django 4.0.6 ドキュメント 5806
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... バーを開始するためのコマンド例です: uwsgi --chdir = /path/to/your/project \ --module = mysite.wsgi:applicati ... s --vacuum \ # clear environment on exit --home = /path/to/virtual/env \ # optional path to a virtual envi ... at least DJANGO_SETTINGS_MODULE . home : Optional path to your project virtual environment. ini 設定ファイ ... ルの例: [ uwsgi ] chdir = /path/to/your/project module = mysite.wsgi:application m ...
https://man.plustar.jp/django/howto/deployment/wsgi/uwsgi.html - [similar]
Django 3.0 リリースノート — Django 4.0.6 ドキュメント 5806
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pport for the furlong unit in Distance . The GEOIP_PATH setting now supports pathlib.Path . The GeoIP2 cla ... ss now accepts pathlib.Path path . django.contrib.postgres ¶ The new R ... now shows COPY … TO statements on PostgreSQL. FilePathField now accepts a callable for path . Allowed sym ... operly inherited. FileField.upload_to now supports pathlib.Path . CheckConstraint is now supported on MySQ ...
https://man.plustar.jp/django/releases/3.0.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 5761
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . The django-admin script should be on your system path if you installed Django via pip . If it's not in y ... our path, ensure you have your virtual environment activate ... ent. This command assumes the programs are on your PATH so that a call to the program name ( psql , mysql ... y named in the FIXTURE_DIRS setting In the literal path named by the fixture Django will load any and all ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
The Django template language: for Python programmers — Django 4.0.6 ドキュメン... 5761
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tes! context_processors is a list of dotted Python paths to callables that are used to populate the contex ... raries' : A dictionary of labels and dotted Python paths of template tag modules to register with the temp ... or example: Engine ( libraries = { 'myapp_tags' : 'path.to.myapp.tags' , 'admin.urls' : 'django.contrib.ad ... load %} tag. 'builtins' : A list of dotted Python paths of template tag modules to add to built-ins . For ...
https://man.plustar.jp/django/ref/templates/api.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT