検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 219 for list (0.108 sec.)
Django 0.96 リリースノート — Django 4.0.6 ドキュメント 4861
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rs import login_required from django.views.generic.list_detail import object_list from mysite.myapp.models ... rns ( '' , ( '^myview/$' , login_required ( object_list ), info ) ) Note that both syntaxes (strings and c ... .96 -- but everyone who's contributed to Django is listed in AUTHORS . 目次 Django 0.96 リリースノート 後方 ...
https://man.plustar.jp/django/releases/0.96.html - [similar]
Django 1.4.4 release notes — Django 4.0.6 ドキュメント 4861
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ew setting, ALLOWED_HOSTS , containing an explicit list of valid host/domain names for this site. A reques ... t with a Host header not matching an entry in this list will raise SuspiciousOperation if request.get_host ...
https://man.plustar.jp/django/releases/1.4.4.html - [similar]
Database instrumentation — Django 4.0.6 ドキュメント 4861
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... SQL query to be sent to the database. params -- a list/tuple of parameter values for the SQL command, or ... a list/tuple of lists/tuples if the wrapped call is execu ...
https://man.plustar.jp/django/topics/db/instrumentation.html - [similar]
django.core.validators — Django 4.0.6 ドキュメント 4819
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... A-F0-9:.]+)\]\Z" , re . IGNORECASE , ) domain_allowlist = [ "localhost" ] @property def domain_whitelist ( ... self ): warnings . warn ( "The domain_whitelist attribute is deprecated in favor of " "domain_allo ... wlist." , RemovedInDjango41Warning , stacklevel = 2 , ) ... return self . domain_allowlist @domain_whitelist . setter def domain_whitelist ( ...
https://man.plustar.jp/django/_modules/django/core/validators.html - [similar]
Django の概要 — Django 4.0.6 ドキュメント 4819
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ort Article def year_archive ( request , year ): a_list = Article . objects . filter ( pub_date__year = ye ... ar ) context = { 'year' : year , 'article_list' : a_list } return render ( request , 'news/year_a ... s for {{ year }} </ h1 > {% for article in article_list %} < p > {{ article.headline }} </ p > < p > By {{ ...
https://man.plustar.jp/django/intro/overview.html - [similar]
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 4819
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... , self . SENIOR } Though you can define a choices list outside of a model class and then refer to it, def ... be combined with ungrouped options within a single list (such as the 'unknown' option in this example). ch ... es can be any sequence object -- not necessarily a list or tuple. This lets you construct choices dynamica ... values , and .names -- to make it easier to access lists of those separate parts of the enumeration. Use . ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
データベースアクセスの最適化 — Django 4.0.6 ドキュメント 4819
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 適切な使用。 We will assume you have done the things listed above. The rest of this document focuses on how ... ないものを取り出さない ¶ QuerySet.values() や values_list() を使用する ¶ When you only want a dict or list o ... ethod to reduce the number of SQL queries. Given a list or queryset of objects: entries = Entry . objects ... 要ないものを取り出さない QuerySet.values() や values_list() を使用する QuerySet.defer() や only() を使用する ...
https://man.plustar.jp/django/topics/db/optimization.html - [similar]
ビルトインのクラスベースビュー API — Django 4.0.6 ドキュメント 4777
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... w RedirectView Generic display ビュー Detail Views List Views Generic editing ビュー FormView CreateView U ... in MonthMixin DayMixin WeekMixin DateMixin BaseDateListView クラスベース汎用ビュー - フラットインデックス ... irectView 詳細のビュー Detail Views リストのビュー List Views 編集するためのビュー FormView CreateView Upd ...
https://man.plustar.jp/django/ref/class-based-views/index.html - [similar]
Constraints reference — Django 4.0.6 ドキュメント 4777
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... xpressions . fields ¶ UniqueConstraint. fields ¶ A list of field names that specifies the unique set of co ... ¶ UniqueConstraint. include ¶ New in Django 3.2. A list or tuple of the names of the fields to be included ...
https://man.plustar.jp/django/ref/models/constraints.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 4777
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... reaks, check the section Less-common Changes for a list of a bunch of less-common compatibility issues. 参 ... om = ( 'first_name' , 'last_name' )) class Admin : list_display = [ 'first_name' , 'last_name' ] def __str ... t Author class AuthorAdmin ( admin . ModelAdmin ): list_display = [ 'first_name' , 'last_name' ] prepopula ... users, but it's probably worth reading through the list and checking your code for these things. Signals ¶ ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]