我的模型中有2个模型(表)的结构和typeFact 我想为每个TypeFact列出一个制造要素列表 我意识到了,但是我必须输入密钥,例如:http://127.0.0.1:8000/TasksManager/typefact/2/ 我想通过在listchoice中选择类型来使其自动化,我必须修改代码,并且需要您的帮助:
views.py
class TypeFact_detail_factures(DetailView):
model = TypeFact
template_name = 'TypeFact_detail_factures.html'
def get_context_data(self, **kwargs):
context = super(TypeFact_detail_factures, self).get_context_data(**kwargs)
tasks_dev = Factures.objects.filter(type_fact=self.object) # champs de liaison
context['tasks_dev'] = tasks_dev
return context
HTML通讯员
网址
path('typefact //',views.TypeFact_detail_factures.as_view(),name ='typefact'),
我想用模型类型中的对应信息自动替换pk 谢谢