class ListLinkView(ListView):
model = FooterLink
template_name = 'footer.html'
def get_context_data(self, **kwargs):
kwargs['another_object_list'] = AnotherModel.objects.all()
kwargs['some_object_list'] = Some.objects.filter(some_variable__gt=5)
return super().get_context_data(**kwargs)