def get_visitor_count(self, obj):
        url = obj.get_absolute_url()
        return Visitor.objects.filter(visit__requests__path=url).count()