-
返回要使用的額外內聯表單的數量。默認情況下,返回
InlineModelAdmin.extra
重寫此方法以編程方式確定額外內聯表單的數量。例如,這可能基於模型實例(作為關鍵字參數
obj
傳遞):class BinaryTreeAdmin(admin.TabularInline): model = BinaryTree def get_extra(self, request, obj=None, **kwargs): extra = 2 if obj: return extra - obj.binarytree_set.count() return extra
本文介紹 django.contrib.admin.InlineModelAdmin.get_extra
的用法。
聲明
InlineModelAdmin.get_extra(request, obj=None, **kwargs)
相關用法
- Python Django InlineModelAdmin.get_max_num用法及代碼示例
- Python Django InlineModelAdmin.raw_id_fields用法及代碼示例
- Python Django Index.expressions用法及代碼示例
- Python Int轉Bytes用法及代碼示例
- Python Django Index.include用法及代碼示例
- Python InteractiveConsole runcode()用法及代碼示例
- Python InteractiveInterpreter runsource()用法及代碼示例
- Python InteractiveInterpreter runcode()用法及代碼示例
- Python IncrementalEncoder encode()用法及代碼示例
- Python PIL Image.draft()用法及代碼示例
- Python PIL Image.thumbnail()用法及代碼示例
- Python PIL Image.new()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python Wand Image()用法及代碼示例
- Python PIL ImageDraw.Draw.rectangle()用法及代碼示例
- Python PIL ImageEnhance.Color() and ImageEnhance.Contrast()用法及代碼示例
- Python Itertools.zip_longest()用法及代碼示例
- Python PIL Image.getdata()用法及代碼示例
- Python Itertools.compress()用法及代碼示例
- Python PIL ImageFont.truetype()用法及代碼示例
- Python Itertools.count()用法及代碼示例
- Python PIL ImagePath.Path.tolist()用法及代碼示例
- Python PIL Image.transform()用法及代碼示例
- Python PIL Image.quantize()用法及代碼示例
- Python PIL Image.point()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.contrib.admin.InlineModelAdmin.get_extra。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。