-
返回要使用的额外内联表单的最大数量。默认情况下,返回
InlineModelAdmin.max_num
重写此方法以编程方式确定内联表单的最大数量。例如,这可能基于模型实例(作为关键字参数
obj
传递):class BinaryTreeAdmin(admin.TabularInline): model = BinaryTree def get_max_num(self, request, obj=None, **kwargs): max_num = 10 if obj and obj.parent: return max_num - 5 return max_num
本文介绍 django.contrib.admin.InlineModelAdmin.get_max_num
的用法。
声明
InlineModelAdmin.get_max_num(request, obj=None, **kwargs)
相关用法
- Python Django InlineModelAdmin.get_extra用法及代码示例
- 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_max_num。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。