Results of 1 - 10 of about 225 for also (0.028 sec.)
- Database Functions — Django 4.0.6 ドキュメント 10822
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
aggregations, or filters in Django. Functions are also expressions , so they can be used and combined wit ...
<QuerySet [<Author: John>, <Author: john>]> It can also be used when ordering, for example with PostgreSQL ...
Extract('date_field', lookup_name) . Each class is also a Transform registered on DateField and DateTimeFi ...
owing, all extracts for DateField listed above may also be used on DateTimeField s . class ExtractHour ( e ...
-
https://man.plustar.jp/django/ref/models/database-functions.html
- [similar]
- 設定 — Django 4.0.6 ドキュメント 9952
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
calhost', '127.0.0.1', '[::1]'] . ALLOWED_HOSTS is also checked when running tests . このヘッダの検証は ge ...
default cache; any number of additional caches may also be specified. If you are using a cache backend oth ...
ests originate from an insecure page). The setting also supports subdomains, so you could add 'https://*.e ...
a leading dot) and not the scheme or an asterisk. Also, Origin header checking isn't performed in older v ...
-
https://man.plustar.jp/django/ref/settings.html
- [similar]
- Django 1.8 リリースノート — Django 4.0.6 ドキュメント 8790
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
her backends. Date and time related arithmetic has also been improved on all backends. There is a correspo ...
arithmetic, similar to F() objects. order_by() has also gained the ability to accept expressions. Conditio ...
hin queries. A collection of database functions is also included with functionality such as Coalesce , Con ...
o.core.signing.TimestampSigner.unsign() method now also accepts a datetime.timedelta object. データベースバ ...
-
https://man.plustar.jp/django/releases/1.8.html
- [similar]
- django-admin と manage.py — Django 4.0.6 ドキュメント 8210
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
roject. It does the same thing as django-admin but also sets the DJANGO_SETTINGS_MODULE environment variab ...
luded, rather than the entire application. You can also mix application names and model names. If you want ...
artitions ¶ If this option is provided, models are also created for partitions. Only support for PostgreSQ ...
ude-views ¶ If this option is provided, models are also created for database views. loaddata ¶ django-admi ...
-
https://man.plustar.jp/django/ref/django-admin.html
- [similar]
- Django 1.6 release notes — Django 4.0.6 ドキュメント 8210
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
upgrading from Django 1.5 or older versions. We've also dropped some features, which are detailed in our d ...
o 1.5, requires Python 2.6.5 or above. Python 3 is also officially supported. We highly recommend the late ...
lly supported) on MySQL and PostgreSQL, and is now also available on Oracle. The default iteration count f ...
ests ¶ The introduction of the new test runner has also slightly changed the way that test models are impo ...
-
https://man.plustar.jp/django/releases/1.6.html
- [similar]
- Django 1.4 release notes — Django 4.0.6 ドキュメント 7526
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
upgrading from Django 1.3 or older versions. We've also dropped some features, which are detailed in our d ...
path / to / my_project_template myproject You can also now provide a destination directory as the second ...
le runserver uses. (The runfcgi management command also internally wraps the WSGI callable configured via ...
y QuerySet each have many related objects that you also need to fetch. Improved password hashing ¶ Django' ...
-
https://man.plustar.jp/django/releases/1.4.html
- [similar]
- クエリー式 — Django 4.0.6 ドキュメント 7432
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
))) # Aggregates can contain complex computations also Company . objects . annotate ( num_offerings = Cou ...
products' ) + F ( 'services' ))) # Expressions can also be used in order_by(), either directly Company . o ...
' ), salary__gt = 10 )) ) # Lookup expressions can also be used directly in filters Company . objects . fi ...
object back to the database. But instead we could also have done: from django.db.models import F reporter ...
-
https://man.plustar.jp/django/ref/models/expressions.html
- [similar]
- Django 1.2 リリースノート — Django 4.0.6 ドキュメント 7432
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
et_db_prep_*() methods on Field , below. The internals of template tags have changed somewhat; authors of ...
orm some action on your website, using the credentials of a logged-in user who visits the malicious site i ...
ng into a site with someone else's credentials, is also covered. Messages framework ¶ Django now includes ...
mail sending methods to use those facilities. This also makes it easier to debug mail sending. Django ship ...
-
https://man.plustar.jp/django/releases/1.2.html
- [similar]
- How to authenticate against Django's user database from Apache — Django 4.0.6 ... 7339
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
a related object that has a 'name' field. You can also specify your own custom mod_wsgi auth handler if y ...
ization with mod_wsgi and Django groups ¶ mod_wsgi also provides functionality to restrict a particular lo ...
t directive, the same WSGI script mysite.wsgi must also import the groups_for_user function which returns ...
d , groups_for_user Requests for /secret/ will now also require user to be a member of the "secret-agents" ...
-
https://man.plustar.jp/django/howto/deployment/wsgi/apache-auth.html
- [similar]
- Unit tests — Django 4.0.6 ドキュメント 7339
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ox , however, any option passed to runtests.py can also be passed to tox by prefixing the argument list wi ...
th -- , as above. Tox also respects the DJANGO_SETTINGS_MODULE environment va ...
are deleted when the tests are finished. You will also need to ensure that your database uses UTF-8 as th ...
t = wsgi ...\> runtests.py --start-at=wsgi You can also run tests starting after a specified top-level mod ...
-
https://man.plustar.jp/django/internals/contributing/writing-code/unit-tests.htm...
- [similar]