検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 219 for list (0.080 sec.)
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 5049
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mission, the object-tools block on a model's changelist will now be rendered (without the add button). Thi ... dded "No date" and "Has date" choices for DateFieldListFilter if the field is nullable. admin に埋め込まれ ... domain names to 253 characters per RFC 1034 . int_list_validator() now accepts an optional allow_negative ... for the new object instead of to the model's changelist. If you need the previous behavior, set the new Mo ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
Django 1.11.8 リリースノート — Django 4.0.6 ドキュメント 5049
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ). Added support for QuerySet.values() and values_list() for union() , difference() , and intersection() ... de cursors on PostgreSQL after values() and values_list() ( #28817 ). Fixed crash on SQLite and MySQL when ...
https://man.plustar.jp/django/releases/1.11.8.html - [similar]
URL ディスパッチャ — Django 4.0.6 ドキュメント 5049
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ticles/2005/03/ would match the third entry in the list. Django would call the function views.month_archiv ... rticles/2003/ would match the first pattern in the list, not the second one, because the patterns are test ... y is to include additional URL patterns by using a list of path() instances. For example, consider this UR ... context variable: #} < ul > {% for yearvar in year_list %} < li >< a href = " {% url 'news-year-archive' y ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
django.apps.config — Django 4.0.6 ドキュメント 5017
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or of this method in # various cases. # Convert to list because __path__ may not support indexing. paths = ... list ( getattr ( module , "__path__" , [])) if len ( pa ... ame )] else : # For unknown reasons, sometimes the list returned by __path__ # contains duplicates that mu ... st be removed (#25246). paths = list ( set ( paths )) if len ( paths ) > 1 : raise Impr ...
https://man.plustar.jp/django/_modules/django/apps/config.html - [similar]
How to create custom template tags and filters — Django 4.0.6 ドキュメント 5017
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rated by example. Let's write a tag that outputs a list of choices for a given Poll object, such as was cr ... nd has a render() method. A compiled template is a list of Node objects. When you call render() on a compi ... e template calls render() on each Node in its node list, with the given context. The results are all conca ... s a builtin cycle template tag that cycles among a list of given strings each time it's rendered: {% for o ...
https://man.plustar.jp/django/howto/custom-template-tags.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 5017
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rity release, pre-notify the security distribution list one week before the actual release. Proofread the ... lease, access to the pre-notification distribution list. If this is your first release, you'll need to coo ... ore the release. The template for that email and a list of the recipients are in the private django-securi ... the correct version, date, GPG key ID (from gpg --list-keys --keyid-format LONG ), release manager's GitH ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
はじめての Django アプリ作成、その 5 — Django 4.0.6 ドキュメント 5017
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ul>\n\n' >>> response . context [ 'latest_question_list' ] <QuerySet [<Question: What's up?>]> ビューを改良 ... 。これを直しましょう。 Tutorial 4 では、以下のような ListView : をベースにしたクラスベースビューを導入しまし ... た。 polls/views.py ¶ class IndexView ( generic . ListView ): template_name = 'polls/index.html' context_ ... object_name = 'latest_question_list' def get_queryset ( self ): """Return the last fiv ...
https://man.plustar.jp/django/intro/tutorial05.html - [similar]
Conditional Expressions — Django 4.0.6 ドキュメント 5017
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .. default = Value ( '0%' ), ... ), ... ) . values_list ( 'name' , 'discount' ) <QuerySet [('Jane Doe', '0 ... ... default = Value ( '0%' ), ... ) ... ) . values_list ( 'name' , 'discount' ) <QuerySet [('Jane Doe', '5 ... TINUM , then = a_year_ago ), ... ), ... ) . values_list ( 'name' , 'account_type' ) <QuerySet [('Jack Blac ... GULAR ) ... ), ... ) >>> Client . objects . values_list ( 'name' , 'account_type' ) <QuerySet [('Jane Doe' ...
https://man.plustar.jp/django/ref/models/conditional-expressions.html - [similar]
Signals — Django 4.0.6 ドキュメント 5017
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dex | Modules « previous | up | next » Signals ¶ A list of all the signals that Django sends. All built-in ... el class that just had an instance created. args A list of positional arguments passed to __init__() . kwa ... nder Question (the class itself) args [] (an empty list because there were no positional arguments passed ... the --verbosity flag for details. Functions which listen for pre_migrate should adjust what they output t ...
https://man.plustar.jp/django/ref/signals.html - [similar]
Django Utils — Django 4.0.6 ドキュメント 5017
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... in the given HttpResponse object. newheaders is a list of header names that should be in Vary . If header ... be used in the request phase because it pulls the list of headers to take into account from the global pa ... a cache key to check against. If there is no headerlist stored, the page needs to be rebuilt, so this func ... e, but we want to prevent response generation. The list of headers to use for cache key generation is stor ...
https://man.plustar.jp/django/ref/utils.html - [similar]