ATM file name change

This commit is contained in:
Reena-cell 2022-09-16 10:37:59 +02:00
parent 3f59b8727c
commit 8cf7e1b2c7
2 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ class UpdateAtmsView(LoginRequiredMixin, FormView):
except Exception as e:
messages.error(self.request, e)
return super(UpdateAtmsView, self).form_invalid(form)
msg = 'Atm {} for Bank {} has been created successfully!'.format( # noqa
msg = 'Atm {} for Bank {} has been update successfully!'.format( # noqa
data["atm_id"], data["bank_id"])
messages.success(self.request, msg)
return super(UpdateAtmsView, self).form_valid(form)