コード例 #1
0
ファイル: forms.py プロジェクト: wendy-king/x7_venv
 def handle(self, request, data):
     image_id = data['image_id']
     try:
         api.image_delete(request, image_id)
     except tank_exception.ClientConnectionError, e:
         LOG.exception("Error connecting to tank")
         messages.error(request,
                        _("Error connecting to tank: %s") % e.message)
コード例 #2
0
ファイル: forms.py プロジェクト: wendy-king/x7_venv
 def handle(self, request, data):
     image_id = data['image_id']
     try:
         api.image_delete(request, image_id)
     except tank_exception.ClientConnectionError, e:
         LOG.exception("Error connecting to tank")
         messages.error(request,
                        _("Error connecting to tank: %s") % e.message)
コード例 #3
0
ファイル: forms.py プロジェクト: wendy-king/x7_venv
 def handle(self, request, data):
     image_id = data['image_id']
     tenant_id = request.user.tenant_id
     try:
         image = api.image_get_meta(request, image_id)
         if image.owner == request.user.username:
             api.image_delete(request, image_id)
         else:
             messages.info(request, _("Unable to delete image, you are not \
                                      its owner."))
             return redirect('dash_images_update', tenant_id, image_id)
     except tank_exception.ClientConnectionError, e:
         LOG.exception("Error connecting to tank")
         messages.error(request, _("Error connecting to tank: %s")
                                 % e.message)
コード例 #4
0
 def handle(self, request, data):
     image_id = data['image_id']
     tenant_id = request.user.tenant_id
     try:
         image = api.image_get_meta(request, image_id)
         if image.owner == request.user.username:
             api.image_delete(request, image_id)
         else:
             messages.info(
                 request,
                 _("Unable to delete image, you are not \
                                      its owner."))
             return redirect('dash_images_update', tenant_id, image_id)
     except tank_exception.ClientConnectionError, e:
         LOG.exception("Error connecting to tank")
         messages.error(request,
                        _("Error connecting to tank: %s") % e.message)