検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 185 for objects (0.119 sec.)
Django 2.0 リリースノート — Django 4.0.6 ドキュメント 5050
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ing driver-specific creation options to GDALRaster objects using papsz_options . Allowed creating GDALRaster ... め、今後、次のような操作は禁止されます。 >>> Model . objects . all ()[: 2 ] . reverse () Traceback (most recent ... t transaction with transaction . atomic (): Book . objects . create ( author_id = 1 ) Author . objects . crea ... sing the chunk_size parameter. For example: Book . objects . iterator ( chunk_size = 100 ) Providing unknown ...
https://man.plustar.jp/django/releases/2.0.html - [similar]
Django 3.2.1 release notes — Django 4.0.6 ドキュメント 5050
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Django 3.2 that caused a crash when combining Q() objects which contains boolean expressions ( #32548 ). Fix ... here an admin changelist would crash when deleting objects filtered against multi-valued relationships ( #326 ...
https://man.plustar.jp/django/releases/3.2.1.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 5017
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... trib/flatpages/models.py . You can access flatpage objects via the Django database API . Check for duplicate ... caping in the template. Getting a list of FlatPage objects in your templates ¶ The flatpages app provides a t ... API Flatpage templates Getting a list of FlatPage objects in your templates Displaying registration_required ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
Django 0.96 リリースノート — Django 4.0.6 ドキュメント 5017
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Find text containing a single backslash MyModel . objects . filter ( text__contains = ' \\\\ ' ) The above i ... Find text containing a single backslash MyModel . objects . filter ( text__contains = ' \\ ' ) Removed ENABL ... els import MyModel info = { "queryset" : MyModel . objects . all (), } urlpatterns = patterns ( '' , ( '^myvi ...
https://man.plustar.jp/django/releases/0.96.html - [similar]
Django 1.7.1 release notes — Django 4.0.6 ドキュメント 4995
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... migrations ( #23416 ). Fixed serialization of type objects in migrations ( #22951 ). Allowed inline and hidde ... h ) ( #23483 ). Restored the ability to deepcopy F objects ( #23492 ). Formats for Welsh ( cy ) and several C ...
https://man.plustar.jp/django/releases/1.7.1.html - [similar]
マイグレーション — Django 4.0.6 ドキュメント 4995
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... igrations = True class MyModel ( models . Model ): objects = MyManager () もし from_queryset() 関数で動的に生 ... igrations = True class MyModel ( models . Model ): objects = MyManager () それに伴う影響については、マイグレー ... you will NOT have custom save() methods called on objects when you access them in migrations, and you will N ... 'yourappname' , 'Person' ) for person in Person . objects . all (): person . name = ' %s %s ' % ( person . f ...
https://man.plustar.jp/django/topics/migrations.html - [similar]
File オブジェクト — Django 4.0.6 ドキュメント 4962
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... in pixels. Additional methods on files attached to objects ¶ Any File that is associated with an object (as w ... File class Additional methods on files attached to objects 前のトピックへ ファイルのハンドリング 次のトピック ...
https://man.plustar.jp/django/ref/files/file.html - [similar]
テストを書いて実行する — Django 4.0.6 ドキュメント 4962
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... estCase ( TestCase ): def setUp ( self ): Animal . objects . create ( name = "lion" , sound = "roar" ) Animal ... . objects . create ( name = "cat" , sound = "meow" ) def tes ... speak are correctly identified""" lion = Animal . objects . get ( name = "lion" ) cat = Animal . objects . g ...
https://man.plustar.jp/django/topics/testing/overview.html - [similar]
はじめての Django アプリ作成、その 3 — Django 4.0.6 ドキュメント 4940
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dex ( request ): latest_question_list = Question . objects . order_by ( '-pub_date' )[: 5 ] output = ', ' . j ... dex ( request ): latest_question_list = Question . objects . order_by ( '-pub_date' )[: 5 ] template = loader ... dex ( request ): latest_question_list = Question . objects . order_by ( '-pub_date' )[: 5 ] context = { 'late ... quest , question_id ): try : question = Question . objects . get ( pk = question_id ) except Question . DoesN ...
https://man.plustar.jp/django/intro/tutorial03.html - [similar]
はじめての Django アプリ作成、その 5 — Django 4.0.6 ドキュメント 4940
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ast five published questions.""" return Question . objects . order_by ( '-pub_date' )[: 5 ] get_queryset() メ ... be published in the future). """ return Question . objects . filter ( pub_date__lte = timezone . now () ) . o ... rder_by ( '-pub_date' )[: 5 ] Question.objects.filter(pub_date__lte=timezone.now()) は、 pub_date ... time . timedelta ( days = days ) return Question . objects . create ( question_text = question_text , pub_dat ...
https://man.plustar.jp/django/intro/tutorial05.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT