Example #1
0
    def get_context_data(self, **kwargs):
        context = super().get_context_data(**kwargs)

        context['title'] = self.get_object().title
        context['images'] = self.get_object().images
        context['image_default'] = Image.default()
        context['form'] = UploadFileForm({'album_id': self.get_object().id})

        return context