検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 320 for not (0.134 sec.)
The sitemap framework — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Make sure you've installed the sites framework . (Note: The sitemap application doesn't install any data ... ses /sitemap.xml . The name of the sitemap file is not important, but the location is. Search engines wil ... uld represent all the entries of your blog, while another could represent all of the events in your event ... def lastmod ( self , obj ): return obj . pub_date Note: changefreq and priority are class attributes cor ...
https://man.plustar.jp/django/ref/contrib/sitemaps.html - [similar]
ウィジェット — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ent. 'is_hidden' : A boolean indicating whether or not this widget is hidden. 'required' : A boolean indi ... cating whether or not the field for this widget is required. 'value' : T ... n HTML form submission, so it's unknown whether or not the user submitted a value. use_required_attribute ... ></ span > </ label > </ fieldset > If you decide not to loop over the radio buttons -- e.g., if your te ...
https://man.plustar.jp/django/ref/forms/widgets.html - [similar]
Paginator — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... The maximum number of items to include on a page, not including orphans (see the orphans optional argume ... tor. allow_empty_first_page ¶ Optional. Whether or not the first page is allowed to be empty. If False an ... ge object with the given 1-based index. Raises PageNotAnInteger if the number cannot be converted to an i ... n exception if the requested page is invalid (i.e. not an integer) or contains no objects. Generally, it' ...
https://man.plustar.jp/django/ref/paginator.html - [similar]
Django 1.6.6 release notes — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ules « previous | up | next » Django 1.6.6 release notes ¶ August 20, 2014 Django 1.6.6 fixes several sec ... e, while making the URL relative to the domain and not to the scheme. File upload denial-of-service ¶ Bef ... etable and flush ( #23089 ). Fixed the "ORA-01843: not a valid month" errors when using Unicode with olde ... I characters ( #22996 ). 目次 Django 1.6.6 release notes reverse() could generate URLs pointing to other ...
https://man.plustar.jp/django/releases/1.6.6.html - [similar]
モデルからフォームを作成する — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... gether' : " %(model_name)s 's %(field_labels)s are not unique." , } } save() メソッド ¶ Every ModelForm a ... upplied, save() will update that instance. If it's not supplied, save() will create a new instance of the ... .g., Textarea(...) ) or classes (e.g., Textarea ). Note that the widgets dictionary is ignored for a mode ... remove one field. There are a couple of things to note, however. Normal Python name resolution rules app ...
https://man.plustar.jp/django/topics/forms/modelforms.html - [similar]
View decorators — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e decorators will return a django.http.HttpResponseNotAllowed if the conditions are not met. require_http ... y GET or POST requests make it this far # ... pass Note that request methods should be in uppercase. requ ... are commonly considered "safe" because they should not have the significance of taking an action other th ...
https://man.plustar.jp/django/topics/http/decorators.html - [similar]
URL ディスパッチャ — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e every URL has that. For example, it's articles , not /articles . Example requests: A request to /articl ... s/2003/ would match the first pattern in the list, not the second one, because the patterns are tested in ... ws.special_case_2003(request) /articles/2003 would not match any of these patterns, because each pattern ... equence a 404 response is sent to the user unless another URL pattern matches. A to_url(self, value) meth ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
Signals — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dispatcher" which helps decoupled applications get notified when actions occur elsewhere in the framework ... . In a nutshell, signals allow certain senders to notify a set of receivers that some action has taken p ... s a set of built-in signals that let user code get notified by Django itself of certain actions. These in ... clude some useful notifications: django.db.models.signals.pre_save & dja ...
https://man.plustar.jp/django/topics/signals.html - [similar]
How to manage static files (e.g. images, JavaScript, CSS) — Django 4.0.6 ドキュ... 4089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... directly in my_app/static/ (rather than creating another my_app subdirectory), but it would actually be ... em. That is, by putting those static files inside another directory named for the application itself. You ... y if the given prefix is local (e.g. static/ ) and not a URL (e.g. http://static.example.com/ ). またこの ... layer. As a consequence, static files requests do not pass through the normal middleware chain . ユーザー ...
https://man.plustar.jp/django/howto/static-files/index.html - [similar]
はじめての Django アプリ作成、その 1 — Django 4.0.6 ドキュメント 4089
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s /var/www ). With Django, you don't do that. It's not a good idea to put any of this Python code within ... may be able to view your code over the web. That's not good for security. コードはドキュメントルートの外、 ... nced). You have unapplied migrations; your app may not work properly until they are applied. Run 'python ... you're ready for production. Now's a good time to note: don't use this server in anything resembling a p ...
https://man.plustar.jp/django/intro/tutorial01.html - [similar]