예제 #1
0
파일: page.py 프로젝트: vden/TsoguNG
 def thumbnail_cropped(self, size):
     img = self.get_front_image()
     if img:
         from utils.snippets import thumbnail_cropped
         return thumbnail_cropped(photo_fs, img.image, size)
예제 #2
0
	def thumbnail_cropped(self, size):
		from utils.snippets import thumbnail_cropped
		return thumbnail_cropped(photo_fs, self.image, size)
예제 #3
0
파일: page.py 프로젝트: vden/TsoguNG
	def thumbnail_cropped(self, size):
		img = self.get_front_image()
		if img:
			from utils.snippets import thumbnail_cropped
			return thumbnail_cropped(photo_fs, img.image, size)
예제 #4
0
파일: videofile.py 프로젝트: vden/TsoguNG
	def thumbnail_cropped(self, size):
		from utils.snippets import thumbnail_cropped
		return thumbnail_cropped(file_fs, self.preview, size)
예제 #5
0
파일: videofile.py 프로젝트: vden/TsoguNG
    def thumbnail_cropped(self, size):
        from utils.snippets import thumbnail_cropped

        return thumbnail_cropped(file_fs, self.preview, size)