検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 331 for using (0.083 sec.)
Djangoの設定 — Django 4.0.6 ドキュメント 5205
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Django, you have to tell it which settings you're using. Do this by using an environment variable, DJANGO_ ... ストを使ってください。ただしこれはDjangoの慣習です。 Using settings without setting DJANGO_SETTINGS_MODULE ¶ ... ODULE environment variable. For example, if you're using the template system by itself, you likely don't wa ... cessary -- and, indeed, recommended -- when you're using a piece of the framework inside a larger applicati ...
https://man.plustar.jp/django/topics/settings.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 5169
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ill usually be 1 (i.e. SITE_ID = 1 , but if you're using the sites framework to manage multiple sites, it c ... _flatpage_sites associates a flatpage with a site. Using the URLconf ¶ There are several ways to include th ... e , { 'url' : '/license/' }, name = 'license' ), ] Using the middleware ¶ The FlatpageFallbackMiddleware ca ... atpages, you need to specify an authenticated user using a for clause. For example: {% get_flatpages for so ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
GeoDjango Tutorial — Django 4.0.6 ドキュメント 5169
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... NFO: Open of `world/data/TM_WORLD_BORDERS-0.3.shp' using driver `ESRI Shapefile' successful. 1: TM_WORLD_BO ... NFO: Open of `world/data/TM_WORLD_BORDERS-0.3.shp' using driver `ESRI Shapefile' successful. 1: TM_WORLD_BO ... NFO: Open of `world/data/TM_WORLD_BORDERS-0.3.shp' using driver `ESRI Shapefile' successful. Layer name: TM ... NFO: Open of `world/data/TM_WORLD_BORDERS-0.3.shp' using driver `ESRI Shapefile' successful. Layer name: TM ...
https://man.plustar.jp/django/ref/contrib/gis/tutorial.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 5169
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... che tables for use with the database cache backend using the information from your settings file. See Djang ... model for selecting the records to dump. If you're using a custom manager as the default manager and it fil ... llows naming the generated migration(s) instead of using a generated name. The name must be a valid Python ... they're manually applying changes; be warned that using --fake runs the risk of putting the migration stat ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
Django Utils — Django 4.0.6 ドキュメント 5169
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... presenting arbitrary object s . Treats bytestrings using the encoding codec. If strings_only is True , don' ... Because of the way the descriptor protocol works, using del (or delattr ) on a cached_property that hasn't ... t it to a string immediately, because you might be using this function outside of a view (and hence the cur ... y_text() decorator described in the next section). Using this decorator means you can write your function a ...
https://man.plustar.jp/django/ref/utils.html - [similar]
Django 3.1 release notes — Django 4.0.6 ドキュメント 5169
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... arted with async views, you need to declare a view using async def : async def my_view ( request ): await a ... mode. However, there will be performance penalties using async code in WSGI mode. You can read more about t ... n. It is enabled by default but can be disabled by using a custom AdminSite and setting AdminSite.enable_na ... o set CSS and ARIA role affordances. This requires using 'django.template.context_processors.request' in th ...
https://man.plustar.jp/django/releases/3.1.html - [similar]
翻訳 — Django 4.0.6 ドキュメント 5169
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 化 ¶ 標準的な翻訳 ¶ Specify a translation string by using the function gettext() . It's convention to import ... ttpResponse ( output ) You could code this without using the alias. This example is identical to the previo ... ame' : Report . _meta . verbose_name , } 注釈 When using ngettext() , make sure you use a single name for e ... Field ( help_text = _ ( 'This is the help text' )) Using gettext_lazy() and ngettext_lazy() to mark strings ...
https://man.plustar.jp/django/topics/i18n/translation.html - [similar]
PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 5123
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... bloom extension on PostgreSQL. You can install it using the BloomExtension migration operation. Provide an ... ee_gin extension on PostgreSQL. You can install it using the BtreeGinExtension migration operation. Set the ... e_gist extension on PostgreSQL. You can install it using the BtreeGistExtension migration operation. Set th ... ame_idx' , ) creates an index on Lower('username') using varchar_pattern_ops . Another example: UniqueConst ...
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html - [similar]
Related objects reference — Django 4.0.6 ドキュメント 5123
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d manager perform the update by calling e.save() . Using add() with a many-to-many relationship, however, w ... oesn't exist), but rather create the relationships using QuerySet.bulk_create() . If you need to execute so ... , which will trigger pre_add and post_add actions. Using add() on a relation that already exists won't dupl ... called in the example above to perform the update. Using remove() with a many-to-many relationship, however ...
https://man.plustar.jp/django/ref/models/relations.html - [similar]
リクエストとレスポンスのオブジェクト — Django 4.0.6 ドキュメント 5123
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... quest.POST . You can also read from an HttpRequest using a file-like interface with HttpRequest.read() or H ... the path, no matter what web server is being used. Using this instead of path can make your code easier to ... e, Django templates, headers can also be looked up using underscores in place of hyphens: {{ request . head ... t () ¶ Returns the originating host of the request using information from the HTTP_X_FORWARDED_HOST (if USE ...
https://man.plustar.jp/django/ref/request-response.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT