Django模板列表中的列表

时间:2018-06-27 13:08:03

标签: django django-templates

如何呈现一个用户列表,该用户具有与Models中的外键相关的自己对象的列表。当我使用html渲染时,它会在所有用户中显示所有用户的所有列表,

编辑

对不起,我迟来了答复,我很少有时间去看我的电脑,

我有三个模型,个人档案,简历和技能,其中两个通过外键与个人档案相关...

VIEWS.PY

PO_COUNT=$(find $file_path/PO/PO_{ABCLOAD,DEF}* -mmin +240 | wc -l)

LIST.HTML

class ResumeList(ListView):
    model = User_Profile
    context_object_name = 'profile'
    template_name = 'resume/list.html'
    paginate_by = 6

    def get_context_data(self, **kwargs):
        context = super().get_context_data(**kwargs)
        context['resume'] = Resume.objects.all()
        context['skill_list'] = Skill.objects.all()
        return context

“简历”和“技能”模型循环位于配置文件循环中,但它显示了所有配置文件的所有技能...

当我更改get_context_data()进行过滤时,会带来错误... 预先感谢...

0 个答案:

没有答案