検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 185 for see (0.052 sec.)
URL ディスパッチャ — Django 4.0.6 ドキュメント 5446
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ched. There's no need to add a leading slash, because every URL has that. For example, it's articles , no ... s/2003 would not match any of these patterns, because each pattern requires that the URL end with a slash ... on is possible by overriding their default values. See the documentation on customizing error views for t ... ondition at hand. The variables are: handler400 -- See django.conf.urls.handler400 . handler403 -- See dj ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
Advanced testing topics — Django 4.0.6 ドキュメント 5446
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... as a result, data created on the primary won't be seen on the replica. To compensate for this, Django al ... uffle to reverse the order for a particular random seed. debug_mode specifies what the DEBUG setting shou ... prior to execution, using the integer as a random seed. If shuffle is None , the seed will be generated ... randomly. In both cases, the seed will be logged and set to self.shuffle_seed prior ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
How to create PDF files — Django 4.0.6 ドキュメント 5380
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he PDF. Here's where the PDF generation happens. # See the ReportLab documentation for the full list of f ... rs # present the option to save the file. buffer . seek ( 0 ) return FileResponse ( buffer , as_attachmen ... ther formats ¶ Notice that there isn't a lot in these examples that's PDF-specific -- just the bits using ... ormat that you can find a Python library for. Also see How to create CSV output for another example and s ...
https://man.plustar.jp/django/howto/outputting-pdf.html - [similar]
アップロードファイルとアップロードハンドラ — Django 4.0.6 ドキュメント 5380
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ory. You'll probably want to use chunks() instead; see below. UploadedFile. multiple_chunks ( chunk_size ... arger than 2.5 megabytes, but that's configurable; see below. UploadedFile. chunks ( chunk_size = None ) ... t, but instead a URL or other pointer to the file (see RFC 2388 ). UploadedFile. charset ¶ For text/* con ...
https://man.plustar.jp/django/ref/files/uploads.html - [similar]
Form fields — Django 4.0.6 ドキュメント 5380
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . CharField ( error_messages = { 'required' : 'Please enter your name' }) >>> name . clean ( '' ) Traceba ... ost recent call last): ... ValidationError : ['Please enter your name'] In the built-in Field classes sec ... he value returned when you provide an empty value (see the section on required above to understand what t ... formats as the choices argument to a model field. See the model field reference documentation on choices ...
https://man.plustar.jp/django/ref/forms/fields.html - [similar]
翻訳 — Django 4.0.6 ドキュメント 5380
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... %} In this case, both the tag and the filter will see the translated string, so they don't need to be aw ... s preferred language as a string. Example: en-us . See How Django discovers language preference . get_cur ... e.g. active languages as specified in LANGUAGES ). See the section about the set_language redirect view f ... rwise Babel won't recognize the tags defined by these extensions and will ignore Jinja2 templates contain ...
https://man.plustar.jp/django/topics/i18n/translation.html - [similar]
django.core.mail — Django 4.0.6 ドキュメント 5314
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mail # backends and the subsequent reorganization (See #10355) from django.core.mail.message import ( DEF ... pient list. All members of the recipient list will see the other recipients in the 'To' field. If from_em ...
https://man.plustar.jp/django/_modules/django/core/mail.html - [similar]
How to create custom model fields — Django 4.0.6 ドキュメント 5314
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dField accepts most of the standard field options (see the list below), but we ensure it has a fixed leng ... pending how long your migrations live for. You can see the results of deconstruction by looking in migrat ... pers, you can also allow users of the admin app to see a short description of the field type via the djan ... rite a custom form field (and even a form widget). See the forms documentation for information about this ...
https://man.plustar.jp/django/howto/custom-model-fields.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 5314
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the format "<app label>.<permission codename>" . (see documentation on permissions ). If the user is ina ... setting arbitrary fields on a custom user model . See Creating users for example usage. create_superuser ... odels it is the field specified by USERNAME_FIELD (see Customizing Users and authentication ). It also ha ... usernames passed in request.META['REMOTE_USER'] . See the Authenticating against REMOTE_USER documentati ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]
Geographic Database Functions — Django 4.0.6 ドキュメント 5314
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... so refer to the documentation of each function to see if your database backend supports the function you ... y the geometry key content of a GeoJSON structure. See also GeoJSON Serializer . 実装例: >>> City . objec ... y.distance.km is the distance value in kilometers. See Measurement Objects for usage details and the list ...
https://man.plustar.jp/django/ref/contrib/gis/functions.html - [similar]