検索

phrase: max: clip:
target: order:
Results of 291 - 300 of about 320 for not (0.170 sec.)
How is Django Formed? — Django 4.0.6 ドキュメント 3793
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... make changes! The point here is to be descriptive, not prescriptive, so feel free to streamline or otherw ... ps involved is: If this is a security release, pre-notify the security distribution list one week before ... the actual release. Proofread the release notes, looking for organization and writing errors. Dr ... started: A GPG key. If the key you want to use is not your default signing key, you'll need to add -u yo ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
設計思想 — Django 4.0.6 ドキュメント 3793
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ありません。 For example, the template system knows nothing about web requests, the database layer knows n ... he database API should realize it's a shortcut but not necessarily an end-all-be-all. The framework shoul ... RL デザイン ¶ 疎結合 ¶ URLs in a Django app should not be coupled to the underlying Python code. Tying UR ... le, one site may put stories at /stories/ , while another may use /news/ . Infinite flexibility ¶ URLは可 ...
https://man.plustar.jp/django/misc/design-philosophies.html - [similar]
The Django admin documentation generator — Django 4.0.6 ドキュメント 3793
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... as well. Template reference ¶ While admindocs does not include a place to document templates by themselve ...
https://man.plustar.jp/django/ref/contrib/admin/admindocs.html - [similar]
Django 1.11.1 リリースノート — Django 4.0.6 ドキュメント 3793
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s ( #27554 ). Prevented hiding GDAL errors if it's not installed when using contrib.gis ( #28160 ). (It's ...
https://man.plustar.jp/django/releases/1.11.1.html - [similar]
素の SQL 文の実行 — Django 4.0.6 ドキュメント 3793
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... example: The QuerySet API is extensive. You can annotate and aggregate using many built-in database func ... must always be included in a raw query. A FieldDoesNotExist exception will be raised if you forget to inc ... ... You can often avoid using raw SQL to compute annotations by instead using a Func() expression . raw() ... ; パラメータはリストで渡す必要が有ります。 警告 Do not use string formatting on raw queries or quote plac ...
https://man.plustar.jp/django/topics/db/sql.html - [similar]
ロギング — Django 4.0.6 ドキュメント 3793
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e stack, plus the values of your Django settings (in other words, the same level of detail that is expose ... in a web page when DEBUG is True ). It's generally not considered a good idea to send such potentially se ... ion of full tracebacks, clear management of who is notified and has access to the information, and so on. ... displays log records when DEBUG=True . Django does not log many such INFO level messages. With this confi ...
https://man.plustar.jp/django/topics/logging.html - [similar]
FAQ: Django を使う — Django 4.0.6 ドキュメント 3756
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... uploaded files. (For performance, these files are not stored in the database.) Define MEDIA_URL as the b ...
https://man.plustar.jp/django/faq/usage.html - [similar]
How to implement a custom template backend — Django 4.0.6 ドキュメント 3756
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... plement a custom template backend in order to use another template system. A template backend is a class ... e library: from django.template import TemplateDoesNotExist , TemplateSyntaxError from django.template.ba ... emplate ( template_name )) except foobar . TemplateNotFound as exc : raise TemplateDoesNotExist ( exc . a ... ): if context is None : context = {} if request is not None : context [ 'request' ] = request context [ ' ...
https://man.plustar.jp/django/howto/custom-template-backend.html - [similar]
How to override templates — Django 4.0.6 ドキュメント 3756
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... > {{ block .super }} {% endblock %} Key points to note: The example creates a file at templates/admin/ba ... s technique works because the template loader does not consider the already loaded override template (at ...
https://man.plustar.jp/django/howto/overriding-templates.html - [similar]
How to deploy static files — Django 4.0.6 ドキュメント 3756
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ites use a separate web server -- i.e., one that's not also running Django -- for serving static files. T ... クラウドサービスや CDN から静的ファイルを配信する ¶ Another common tactic is to serve static files from a c ...
https://man.plustar.jp/django/howto/static-files/deployment.html - [similar]