検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 219 for list (0.071 sec.)
はじめての Django アプリ作成、その 3 — Django 4.0.6 ドキュメント 5645
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rt Question def index ( request ): latest_question_list = Question . objects . order_by ( '-pub_date' )[: ... join ([ q . question_text for q in latest_question_list ]) return HttpResponse ( output ) # Leave the rest ... templates/polls/index.html ¶ {% if latest_question_list %} < ul > {% for question in latest_question_list ... rt Question def index ( request ): latest_question_list = Question . objects . order_by ( '-pub_date' )[: ...
https://man.plustar.jp/django/intro/tutorial03.html - [similar]
Django 1.8.8 リリースノート — Django 4.0.6 ドキュメント 5645
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... using a language not in Django's default language list ( LANGUAGES ) ( #25915 ). django.views.decorators. ... 23372 ). Fixed a crash in QuerySet.values()/values_list() after an annotate() and order_by() when values() ... /values_list() includes a field not in the order_by() ( #25316 ... values , filter , using , which , read , formats , list , we クイック検索 Last update: 2022年6月01日 « pre ...
https://man.plustar.jp/django/releases/1.8.8.html - [similar]
ビルトインのクラスベースのジェネリックビュー — Django 4.0.6 ドキュメント 5645
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ョンを作っている場合、リストビューの例としては、 TalkListView や RegisteredUserListView といったものが考えら ... しょう。 # views.py from django.views.generic import ListView from books.models import Publisher class Publi ... sherListView ( ListView ): model = Publisher 最後に、このビ ... .urls import path from books.views import PublisherListView urlpatterns = [ path ( 'publishers/' , Publish ...
https://man.plustar.jp/django/topics/class-based-views/generic-display.html - [similar]
django.contrib.postgres.validators — Django 4.0.6 ドキュメント 5603
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ( MaxLengthValidator ): message = ngettext_lazy ( "List contains %(show_value)d item, it should contain no ... more than " " %(limit_value)d ." , "List contains %(show_value)d items, it should contain n ... ( MinLengthValidator ): message = ngettext_lazy ( "List contains %(show_value)d item, it should contain no ... fewer than " " %(limit_value)d ." , "List contains %(show_value)d items, it should contain n ...
https://man.plustar.jp/django/_modules/django/contrib/postgres/validators.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 5603
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... from previous versions of Django should read that list carefully. Python バージョン間の互換性 ¶ Django 1. ... ride the provided templates to change the doctype. List filters in admin interface ¶ Prior to Django 1.4, ... the admin app let you specify change list filters by specifying a field lookup, but it didn' ... pec"). For more details, see the documentation for list_filter . Multiple sort in admin interface ¶ The ad ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
How to override templates — Django 4.0.6 ドキュメント 5561
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ich provides the templates blog/post.html and blog/list.html . The relevant settings for your project woul ... he template files to that folder: templates/ blog/ list.html post.html The template loader first looks for ... n the blog app ask for the blog/post.html and blog/list.html templates, the loader will return the files y ... myapp and the templates to override are named blog/list.html and blog/post.html , then your directory stru ...
https://man.plustar.jp/django/howto/overriding-templates.html - [similar]
Simple mixins — Django 4.0.6 ドキュメント 5561
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... se class. Calls get_template_names() to obtain the list of template names that will be searched looking fo ... istent template. get_template_names () ¶ Returns a list of template names to search for when rendering the ... be used. The default implementation will return a list containing template_name (if it is specified). 目次 ... ontext , mixins , use , names , TemplateResponse , list , instance , data , Default クイック検索 Last upda ...
https://man.plustar.jp/django/ref/class-based-views/mixins-simple.html - [similar]
django.dispatch.dispatcher — Django 4.0.6 ドキュメント 5530
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ivers_cache . clear () return disconnected def has_listeners ( self , sender = None ): return bool ( self ... uments which will be passed to receivers. Return a list of tuple pairs [(receiver, response), ... ]. """ i ... uments which will be passed to receivers. Return a list of tuple pairs [(receiver, response), ... ]. If an ... with whatever arguments it can accept. # Return a list of tuple pairs [(receiver, response), ... ]. respo ...
https://man.plustar.jp/django/_modules/django/dispatch/dispatcher.html - [similar]
Django 1.4 documentation 5530
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 示しましょう: def year_archive ( request , year ): a_list = Article . objects . filter ( pub_date__year = ye ... ws/year_archive.html' , { 'year' : year , 'article_list' : a_list }) この例では Django の テンプレートシス ... year }} 年の記事 </ h1 > {% for article in article_list %} < p > {{ article.headline }} </ p > < p > By {{ ... をクリックしてみてください。 チェンジリスト (change list) のペー ジに入ります。このページはデータベース上の ...
https://man.plustar.jp/django/contents.html - [similar]
PostgreSQL specific query expressions — Django 4.0.6 ドキュメント 5530
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t uses the PostgreSQL ARRAY constructor to build a list of values from the queryset, which must use QueryS ... es not require an SQL GROUP BY clause to build the list of values. For example, if you want to annotate al ... ons , PostgreSQL , ArraySubquery , values , from , list , トピック , query , queryset , next クイック検索 ...
https://man.plustar.jp/django/ref/contrib/postgres/expressions.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT