検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 57 for ModelAdmin (0.028 sec.)
Django の admin サイト — Django 4.0.6 ドキュメント 14729
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dels, register them with the admin as described in ModelAdmin . 他のトピック ¶ Admin actions The Django admin do ... 、 FAQ: 管理インタフェース を参照してみてください。 ModelAdmin のオブジェクト ¶ class ModelAdmin ¶ The ModelAdmin ... pplication. Let's take a look at an example of the ModelAdmin : from django.contrib import admin from myapp.mode ... ls import Author class AuthorAdmin ( admin . ModelAdmin ): pass admin . site . register ( Author , AuthorA ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
Admin actions — Django 4.0.6 ドキュメント 12746
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... u wish to override this behavior, you can override ModelAdmin.delete_queryset() or write a custom action which d ... r functions that take three arguments: The current ModelAdmin An HttpRequest representing the current request, Q ... Our publish-these-articles function won't need the ModelAdmin or the request object, but we will use the queryse ... t: def make_published ( modeladmin , request , queryset ): queryset . update ( status ...
https://man.plustar.jp/django/ref/contrib/admin/actions.html - [similar]
索引 — Django 4.0.6 ドキュメント 12218
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... try の属性) action_time (LogEntry の属性) actions (ModelAdmin の属性) actions_on_bottom (ModelAdmin の属性) acti ... ons_on_top (ModelAdmin の属性) actions_selection_counter (ModelAdmin の属 ... atabaseSchemaEditor のメソッド) add_form_template (ModelAdmin の属性) add_index() (BaseDatabaseSchemaEditor のメ ... lements() (SyndicationFeed のメソッド) add_view() (ModelAdmin のメソッド) AddConstraint (django.db.migrations.op ...
https://man.plustar.jp/django/genindex.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 8488
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... per-request thanks to the new django.contrib.admin.ModelAdmin.get_search_fields() method. The ModelAdmin.get_fie ... method may be overridden to customize the value of ModelAdmin.fields . In addition to the existing admin.site.re ... can use the new register() decorator to register a ModelAdmin . You may specify ModelAdmin.list_display_links = ... on the change list page grid. You may now specify ModelAdmin.view_on_site to control whether or not to display ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Django 1.7.6 release notes — Django 4.0.6 ドキュメント 8400
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n 1.7.5. Mitigated an XSS attack via properties in ModelAdmin.readonly_fields ¶ The ModelAdmin.readonly_fields a ... se notes Mitigated an XSS attack via properties in ModelAdmin.readonly_fields Bugfixes 前のトピックへ Django 1.7 ... se , notes , fields , readonly , not , attribute , ModelAdmin , properties , In , Bugfixes クイック検索 Last upd ...
https://man.plustar.jp/django/releases/1.7.6.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 8091
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ing users read-only access to models in the admin. ModelAdmin.has_view_permission() is new. The implementation i ... erations . マイナーな機能 ¶ django.contrib.admin ¶ ModelAdmin.search_fields now accepts any lookup such as field ... .3 から 3.3.1 にアップグレードされました。 The new ModelAdmin.delete_queryset() method allows customizing the de ... can now override the default admin site . The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_ ...
https://man.plustar.jp/django/releases/2.1.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 8047
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... min tag. The following checks are performed on any ModelAdmin (or subclass) that is registered with the admin si ... only_fields[n] is not a callable, an attribute of <ModelAdmin class> , or an attribute of <model> . admin.E036 : ... <model> has to be registered to be referenced by <modeladmin>.autocomplete_fields . admin.E040 : <modeladmin> m ... search_fields , because it's referenced by <other_modeladmin>.autocomplete_fields . ModelAdmin ¶ The following ...
https://man.plustar.jp/django/ref/checks.html - [similar]
Django 1.9.2 リリースノート — Django 4.0.6 ドキュメント 7724
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e" but not "add" permission can create objects for ModelAdmin 's with save_as=True ¶ If a ModelAdmin uses save_a ... ixed a crash when using a reverse OneToOneField in ModelAdmin.readonly_fields ( #26060 ). Fixed a crash when cal ... e" but not "add" permission can create objects for ModelAdmin 's with save_as=True Backwards incompatible change ...
https://man.plustar.jp/django/releases/1.9.2.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 7416
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ダイレクトは削除される予定なので気をつけてください。 ModelAdmin.get_list_select_related() が追加され、 admin chang ... 加されました。 AdminSite.empty_value_display および ModelAdmin.empty_value_display が追加され、admin change list ... rd argument clear=True . ModelForm , and therefore ModelAdmin , internally rely on direct assignment for many-to ... a third-party app makes use of it, create a custom ModelAdmin to add it back. The return value of setup_database ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
Django 1.2.5 release notes — Django 4.0.6 ドキュメント 7372
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s , or using the setUp() method of your test case. ModelAdmin.lookup_allowed signature changed ¶ Django 1.2.4 in ... troduced a method lookup_allowed on ModelAdmin , to cope with a security issue (changeset [15033] ... es Use of custom SQL to load initial data in tests ModelAdmin.lookup_allowed signature changed 前のトピックへ Dj ...
https://man.plustar.jp/django/releases/1.2.5.html - [similar]
PREV 1 2 3 4 5 6 NEXT