検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 359 for from (0.111 sec.)
テンプレート — Django 4.0.6 ドキュメント 4851
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ends for other template languages may be available from third-parties. You can also write your own custom ... 素に分類できます。 変数 ¶ A variable outputs a value from the context, which is a dict-like object mapping k ... g. an "if" statement or a "for" loop, grab content from a database, or even enable access to other templat ... are obtained with Engine.get_template() or Engine.from_string() . Likewise django.template.backends.djang ...
https://man.plustar.jp/django/topics/templates.html - [similar]
はじめての Django アプリ作成、その 3 — Django 4.0.6 ドキュメント 4824
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ls.urls モジュールと結びつけます。 polls/urls.py ¶ from django.urls import path from . import views urlpat ... , question_id = 34 ) The question_id=34 part comes from <int:question_id> . Using angle brackets "captures ... 区切り、日付順に表示するビューです: polls/views.py ¶ from django.http import HttpResponse from .models impor ... index ビューを更新してみましょう: polls/views.py ¶ from django.http import HttpResponse from django.templa ...
https://man.plustar.jp/django/intro/tutorial03.html - [similar]
Installing Geospatial libraries — Django 4.0.6 ドキュメント 4824
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or settings file required -- import them as normal from django.contrib.gis . On Debian/Ubuntu, you are adv ... ructions if you are on macOS or Windows . Building from source ¶ When installing from source on UNIX and G ... rs must install Xcode in order to compile software from source. GEOS ¶ GEOS is a C++ library for performin ... I library is called (e.g., libgeos_c.so ) directly from Python using ctypes. First, download GEOS from the ...
https://man.plustar.jp/django/ref/contrib/gis/install/geolibs.html - [similar]
django.contrib.humanize — Django 4.0.6 ドキュメント 4824
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... go になります。 17 Feb 2007 16:30:30 は 30 seconds from now になります。 17 Feb 2007 16:30:29 は 29 second ... s from now になります。 17 Feb 2007 16:31:00 becomes a mi ... nute from now になります。 17 Feb 2007 16:34:35 は 4 minutes ... from now になります。 17 Feb 2007 17:30:29 は an hour f ...
https://man.plustar.jp/django/ref/contrib/humanize.html - [similar]
クロスサイトリクエストフォージェリ (CSRF) 対策 — Django 4.0.6 ドキュメント 4824
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ude the CSRF token in your HTML and read the token from the DOM with JavaScript: {% csrf_token %} < script ... 護を提供するデコレータです。 使い方は以下の通りです: from django.shortcuts import render from django.views.d ... to your application since that request won't come from your own exact domain. This also addresses a man-i ... E_DOMAIN = '.example.com' will allow POST requests from www.example.com and api.example.com . If the setti ...
https://man.plustar.jp/django/ref/csrf.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 4824
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ll argon2-cffi (along with any version requirement from Django's setup.cfg ). Modify PASSWORD_HASHERS to l ... install bcrypt (along with any version requirement from Django's setup.cfg ). Modify PASSWORD_HASHERS to l ... django.contrib.auth.hashers.PBKDF2PasswordHasher : from django.contrib.auth.hashers import PBKDF2PasswordH ... es interpret the memory_cost parameter differently from the value that Django uses. The conversion is give ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]
ビューを記述する — Django 4.0.6 ドキュメント 4824
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... キュメントとして、現在の日付と時刻を返すビューです: from django.http import HttpResponse import datetime de ... esponse in order to signify an error. For example: from django.http import HttpResponse , HttpResponseNotF ... コードを返すクラスを作成することもできます。例えば: from django.http import HttpResponse def my_view ( requ ... ラーページをアプリケーションに返します。 使い方の例: from django.http import Http404 from django.shortcuts i ...
https://man.plustar.jp/django/topics/http/views.html - [similar]
django.db.utils — Django 4.0.6 ドキュメント 4797
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s up django.db.utils のソースコード import pkgutil from importlib import import_module from django.conf im ... port settings from django.core.exceptions import ImproperlyConfigured ... # For backwards compatibility with Django < 3.2 from django.utils.connection import ConnectionDoesNotEx ... ist # NOQA: F401 from django.utils.connection import BaseConnectionHandl ...
https://man.plustar.jp/django/_modules/django/db/utils.html - [similar]
django.utils.html — Django 4.0.6 ドキュメント 4797
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r global use.""" import html import json import re from html.parser import HTMLParser from urllib.parse im ... uote , unquote , urlencode , urlsplit , urlunsplit from django.utils.encoding import punycode from django. ... tional import Promise , keep_lazy , keep_lazy_text from django.utils.http import RFC3986_GENDELIMS , RFC39 ... 86_SUBDELIMS from django.utils.regex_helper import _lazy_re_compile ...
https://man.plustar.jp/django/_modules/django/utils/html.html - [similar]
How to configure and use logging — Django 4.0.6 ドキュメント 4797
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Make a basic logging call ¶ To send a log message from within your code, you place a logging call into it ... unnamed . That means that it will process records from all loggers (see Use logger namespacing below on h ... The unnamed logging configuration '' captures logs from any Python application. A named logging configurat ... ion will capture logs only from loggers with matching names. The namespace of a lo ...
https://man.plustar.jp/django/howto/logging.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 NEXT