def get_context_data(self, **kwargs):
        context = super().get_context_data(**kwargs)
        context.update({
            'society': get_object_or_404(Society, shortname=self.kwargs['society_name']),
        })