在Djangotables2表中呈现Djangosimplehistory查询

2024-10-01 07:11:18 发布

您现在位置:Python中文网/ 问答频道 /正文

我尝试在django-tables2表中呈现django-simple-history查询集。此时,我将原始查询集传递给上下文中的模板。此外,我想将Queryset传递给Table对象,以使用表的功能,如linkyfy列或exclude列。为此,我必须在meta表中指定一个模型。这里的问题是,历史的模型是自动生成的

实际代码:

#views.py
from .tables import HistoryTable

class HistoryView(LoginRequiredMixin, SingleTableView):
    template_name = "funkwerkstatt/history.html"

    def get_context_data(self, **kwargs):
        context = super().get_context_data(**kwargs)
        context["table"] = Device.history.filter(id=self.kwargs["pk"])
        ## futur code
        #context["table"] = HistoryTable(Device.history.filter(id=self.kwargs["pk"]))
        return context

#tables.py
import django_tables2 as tables

class HistoryTable(tables.Table):
    device = tables.Column(accessor="device", linkify=True)
    class Meta:
        model = # HistoryModel?!
        empty_text = "No entry"
        exclude = ["id",]

有没有方法引用自动生成的HistoryModel


Tags: djangopy模型importselfidtablescontext