예제 #1
0
파일: photo.py 프로젝트: yxm0513/flask-ims
def delete(id):
    photo = Photo.get(id)
    if photo is None:
        abort(404)
    url = photos.url(photo.filename)
    # try to delete the record and remove it from directory
    return redirect(url_for('index'))
예제 #2
0
파일: models.py 프로젝트: yxm0513/flask-ims
 def url(self):
     return(photos.url(self.filename))