検索

phrase: max: clip:
target: order:
Results of 201 - 210 of about 320 for not (0.175 sec.)
アプリケーション — Django 4.0.6 ドキュメント 4089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a submodule called apps.py . This is a convention, not a requirement. AppConfig subclasses may be defined ... use it lives outside of an application and thus cannot be automatically detected. アプリケーションの設定 ... f the application doesn't contain a models module. Note that the database related signals such as pre_mig ... False , get_model() returns a model class that may not be fully functional (reverse accessors may be miss ...
https://man.plustar.jp/django/ref/applications.html - [similar]
Geolocation with GeoIP2 — Django 4.0.6 ドキュメント 4089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... City datasets in binary format (the CSV files will not work!). Grab the GeoLite2-Country.mmdb.gz and GeoL ... try = None , city = None ) ¶ The GeoIP object does not require any parameters to use the default settings ... rs in a call to the underlying geoip2 library. Footnotes [1] GeoIP(R) is a registered trademark of MaxMin ...
https://man.plustar.jp/django/ref/contrib/gis/geoip2.html - [similar]
メッセージフレームワーク — Django 4.0.6 ドキュメント 4089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... quence, because otherwise the message storage will not be cleared for the next request. コンテクストプロセ ... ages . debug ( request , 'Test message...' ) # In another request, record only messages with a level of W ... one of the add_message family of methods. It does not hide failures that may occur for other reasons. Ad ... creates a message in one window (or tab) and then another that fetches any uniterated messages in another ...
https://man.plustar.jp/django/ref/contrib/messages.html - [similar]
PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 4089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ates a gin index . To use this index on data types not in the built-in operator classes , you need to act ... lds with spatial_index=True . They're also useful on other types, such as HStoreField or the range fields ... . To use this index on data types not in the built-in gist operator classes , you need t ... on Lower('username') using varchar_pattern_ops . Another example: UniqueConstraint ( OpClass ( Upper ( ' ...
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html - [similar]
Conditional Expressions — Django 4.0.6 ドキュメント 4089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... u use if ... elif ... else logic within filters, annotations, aggregations, and updates. A conditional ex ... based on the account type >>> Client . objects . annotate ( ... discount = Case ( ... When ( account_type ... on the registration date >>> Client . objects . annotate ( ... discount = Case ( ... When ( registered_o ... なクエリ ¶ Conditional expressions can be used in annotations, aggregations, filters, lookups, and updates ...
https://man.plustar.jp/django/ref/models/conditional-expressions.html - [similar]
Django 1.7.1 release notes — Django 4.0.6 ドキュメント 4089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ules « previous | up | next » Django 1.7.1 release notes ¶ October 22, 2014 Django 1.7.1 fixes several bu ... L clauses which were omitted on some backends when not using migrations ( #23416 ). Fixed serialization o ... fails with a ValueError if the decorated object cannot automatically be imported ( #23418 ). Fixed a typo ... arbitrary packages from the Python path. This was not considered a security issue because admindocs is o ...
https://man.plustar.jp/django/releases/1.7.1.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 4089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... base and queries the built-in permissions. It does not provide protection against brute force attacks via ... ts . get ( username = username ) except User . DoesNotExist : # Create a new user. There's no need to set ... . objects . get ( pk = user_id ) except User . DoesNotExist : return None カスタムバックエンドによる認可の ... ated interactively. REQUIRED_FIELDS has no effect in other parts of Django, like creating a user in the a ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
How to create database migrations — Django 4.0.6 ドキュメント 4043
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e databases, you may need to figure out whether or not to run a migration against a particular database. ... the migrations as usual with the migrate command. Note there is a race condition if you allow objects to ... set the dependencies property based on whether or not the old app is installed. Otherwise, you'll have m ... ( on_delete = django . db . models . deletion . DO_NOTHING , to = 'core.Author' , ), ), ( 'book' , models ...
https://man.plustar.jp/django/howto/writing-migrations.html - [similar]
Django Deprecation Timeline — Django 4.0.6 ドキュメント 4043
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... about each item can often be found in the release notes of two versions prior. 5.0 ¶ See the Django 4.0 ... release notes for more details on these changes. The SERIALIZE ... will be removed. 4.1 ¶ See the Django 3.2 release notes for more details on these changes. Support for a ... will be removed. 4.0 ¶ See the Django 3.0 release notes for more details on these changes. django.utils. ...
https://man.plustar.jp/django/internals/deprecation.html - [similar]
The Django template language: for Python programmers — Django 4.0.6 ドキュメン... 4043
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -Z), any digit (0-9), an underscore (but they must not start with an underscore) or a dot. Dots have a sp ... mple: foo.bar List-index lookup. Example: foo[bar] Note that "bar" in a template expression like {{ foo.b ... ar }} will be interpreted as a literal string and not using the value of the variable "bar", if one exis ... ender ( Context ({ "person" : p })) "My name is ." Note that django.core.exceptions.ObjectDoesNotExist , ...
https://man.plustar.jp/django/ref/templates/api.html - [similar]