예제 #1
0
 def cover_picture(self):
     from app.models import Picture
     return Picture.get_by_id(self.cover_picture_id)
예제 #2
0
 def profile_picture(self):
     if not self.profile_picture_id:
         return None
     from app.models import Picture
     return Picture.get_by_id(self.profile_picture_id)
예제 #3
0
 def profile_picture(self):
     if not self.profile_picture_id:
         return None
     from app.models import Picture
     return Picture.get_by_id(self.profile_picture_id)
예제 #4
0
파일: post.py 프로젝트: jctt1983/PythonBlog
 def cover_picture(self):
     from app.models import Picture
     return Picture.get_by_id(self.cover_picture_id)