検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 331 for using (0.043 sec.)
How to create custom template tags and filters — Django 4.0.6 ドキュメント 4290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hich would need to be escaped on output to avoid causing problems. Similarly, removing a semicolon ( ; ) ca ... ther way. 警告 Avoiding XSS vulnerabilities when reusing built-in filters Django's built-in filters have au ... ty. In older versions of Django, be careful when reusing Django's built-in filters as autoescape defaults t ... ject being edited -- so they're a perfect case for using a small template that is filled with details from ...
https://man.plustar.jp/django/howto/custom-template-tags.html - [similar]
Django Deprecation Timeline — Django 4.0.6 ドキュメント 4290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... methods will be removed. Support for query lookups using the model name when Meta.default_related_name is s ... out a _apply_rel_filters() method will be removed. Using User.is_authenticated() and User.is_anonymous() as ... will be removed. Support for old-style middleware using settings.MIDDLEWARE_CLASSES will be removed. 1.10 ... l be removed. SimpleTestCase.urls will be removed. Using an incorrect count of unpacked values in the for t ...
https://man.plustar.jp/django/internals/deprecation.html - [similar]
django.contrib.auth — Django 4.0.6 ドキュメント 4290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ntication backend used by Django. It authenticates using credentials consisting of a user identifier and pa ... provided, it tries to fetch a username from kwargs using the key CustomUser.USERNAME_FIELD . Returns an aut ... user_can_authenticate() always returns True . When using this backend, you'll likely want to customize the ... to-Django-handled authentication. It authenticates using usernames passed in request.META['REMOTE_USER'] . ...
https://man.plustar.jp/django/ref/contrib/auth.html - [similar]
Testing GeoDjango apps — Django 4.0.6 ドキュメント 4290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... this additional query may set the version manually using a 3-tuple of integers specifying the major, minor, ... all of the databases in the settings file must be using one of the spatial database backends . カスタマイズ ...
https://man.plustar.jp/django/ref/contrib/gis/testing.html - [similar]
The "sites" framework — Django 4.0.6 ドキュメント 4290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... l to the Site model in a many-to-one relationship, using ForeignKey . For example, if an article is only al ... up" notice needs to be different for each site. By using Site objects, we can abstract the "thank you" noti ... base query, you can tell Django to clear the cache using Site.objects.clear_cache() : # First call; current ... ite plays a key role in your application, consider using the helpful CurrentSiteManager in your model(s). I ...
https://man.plustar.jp/django/ref/contrib/sites.html - [similar]
Django 1.1.4 リリースノート — Django 4.0.6 ドキュメント 4290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pgrade for any development or deployment currently using or targeting Django 1.1. For full details on the n ... AJAX toolkits add an X-Requested-With header when using XMLHttpRequest. Browsers have strict same-origin p ...
https://man.plustar.jp/django/releases/1.1.4.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 4290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ay of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fi ... elds) now support using field transforms. BooleanField can now be null=Tru ... context variable ¶ To fix the lack of <label> when using RadioSelect and CheckboxSelectMultiple with MultiW ... king in a mixed Python 2 and Python 3 environment. Using None as a django.contrib.postgres.fields.JSONField ...
https://man.plustar.jp/django/releases/2.1.html - [similar]
非同期サポート — Django 4.0.6 ドキュメント 4290
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... function directly from an async function, without using sync_to_async() or similar, then it can also occur ... functions in its own, sync function, and call that using asgiref.sync.sync_to_async() (or any other way of ... sier to interact with asynchronous APIs. If you're using an IPython shell, you can disable this event loop ... ead, if the main thread is synchronous and you are using the async_to_sync() wrapper. thread_sensitive=Fals ...
https://man.plustar.jp/django/topics/async.html - [similar]
How to upgrade Django to a newer version — Django 4.0.6 ドキュメント 4245
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ngs are silenced by default. You must turn them on using the -Wa Python command line option or the PYTHONWA ... .py test ...\> py -Wa manage.py test If you're not using the Django test runner, you may need to also ensur ... ime to install the new Django version . If you are using a virtual environment and it is a major upgrade, y ...
https://man.plustar.jp/django/howto/upgrade-version.html - [similar]
Paginator — Django 4.0.6 ドキュメント 4245
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ス] ¶ A paginator acts like a sequence of Page when using len() or iterating it directly. Paginator. object_ ... o count() method, then Paginator will fall back to using len(object_list) . This allows objects, such as Qu ... -- you'll get them by iterating Paginator , or by using Paginator.page() . class Page ( object_list , numb ...
https://man.plustar.jp/django/ref/paginator.html - [similar]