検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 312 for USE (0.029 sec.)
How to deploy Django — Django 4.0.6 ドキュメント 5897
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... opers' lives easier, but all those tools are of no use if you can't easily deploy your sites. Since Djang ... endly standard that will allow your Django site to use asynchronous Python features, and asynchronous Dja ... are suitable. WSGI とともにデプロイするには How to use Django with Gunicorn Django を uWSGI とともに使うに ... ともに使うには? How to authenticate against Django's user database from Apache application オブジェクト Set ...
https://man.plustar.jp/django/howto/deployment/index.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 5897
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ns between your models and ContentType can also be used to enable "generic" relationships between an inst ... led applications require it: The admin application uses it to log the history of each object added or cha ... admin interface. Django's authentication framework uses it to tie user permissions to specific models. Th ... example, we could look up the ContentType for the User model: >>> from django.contrib.contenttypes.model ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 5794
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... The raw HTTP request body as a bytestring. This is useful for processing data in different ways than conv ... ayload etc. For processing conventional form data, use HttpRequest.POST . You can also read from an HttpR ... on of the path, no matter what web server is being used. Using this instead of path can make your code ea ... oding ¶ A string representing the current encoding used to decode form submission data (or None , which m ...
https://man.plustar.jp/django/ref/request-response.html - [similar]
クラスベースのビューでミックスインを使用する — Django 4.0.6 ドキュメント 5794
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o add more members to the dictionary. You can also use the extra_context attribute. Django の一般的なクラ ... oduce us to four mixins which between them provide useful functionality when working with either a single ... ます。 To then make a TemplateResponse , DetailView uses SingleObjectTemplateResponseMixin , which extends ... ns, but the main one that most people are going to use is <app_label>/<model_name>_detail.html . The _det ...
https://man.plustar.jp/django/topics/class-based-views/mixins.html - [similar]
ファイルの管理 — Django 4.0.6 ドキュメント 5794
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... access APIs for files such as those uploaded by a user. The lower level APIs are general enough that you ... could use them for other purposes. If you want to handle "st ... ついて説明します。 Using files in models ¶ When you use a FileField or ImageField , Django provides a set ... of APIs you can use to deal with that file. Consider the following mod ...
https://man.plustar.jp/django/topics/files.html - [similar]
Unicode data — Django 4.0.6 ドキュメント 5757
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... u need to know if you're writing applications that use data or templates that are encoded in something ot ... s giving it an encoding of UTF-8 or UTF-16. If you use a more restrictive encoding -- for example, latin1 ... the database, and information will be lost. MySQL users, refer to the MySQL manual for details on how to ... er the database character set encoding. PostgreSQL users, refer to the PostgreSQL manual for details on c ...
https://man.plustar.jp/django/ref/unicode.html - [similar]
Django Utils — Django 4.0.6 ドキュメント 5757
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... modules in django.utils are designed for internal use and only the following parts can be considered sta ... rs ( response , cache_timeout = None ) ¶ Adds some useful headers to the given HttpResponse object: Expir ... n seconds. The CACHE_MIDDLEWARE_SECONDS setting is used by default. add_never_cache_headers ( response ) ... s a cache key based on the request path. It can be used in the request phase because it pulls the list of ...
https://man.plustar.jp/django/ref/utils.html - [similar]
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 5757
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... expressions. Conditional Expressions allow you to use if ... elif ... else logic within queries. A colle ... showing a link to an inline object's change form. Use the new django.contrib.admin.RelatedOnlyFieldListF ... ogin_form . The base.html template has a new block usertools which contains the user-specific header. A n ... alue from has_permission() , indicates whether the user may access the site. Foreign key dropdowns now ha ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 5729
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... gest new feature in Django 1.5 is the configurable User model . Before Django 1.5, applications that want ... ed to use Django's auth framework ( django.contrib.auth ) we ... re forced to use Django's definition of a "user". In Django 1.5, yo ... u can now swap out the User model for one that you write yourself. This could ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 5729
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the alias default has special significance. Django uses the database with the alias of default when no ot ... lt PostgreSQL database and a MySQL database called users : DATABASES = { 'default' : { 'NAME' : 'app_data ... ' , 'ENGINE' : 'django.db.backends.postgresql' , 'USER' : 'postgres_user' , 'PASSWORD' : 's3krit' }, 'us ... ers' : { 'NAME' : 'user_data' , 'ENGINE' : 'django.db.backends.mysql' , ' ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT