1384: Этап №4 - Имя URLa выставки: fix

remotes/origin/mobile_from_stage4
Alexander Burdeiny 10 years ago
parent 6dc6bf93eb
commit 4ec3a300b0
  1. 4
      redirects/admin.py

@ -46,7 +46,9 @@ class NewUrlForObject(AjaxableResponseMixin, UpdateView):
slug_field = 'url'
def get_initial(self):
new_url = translit_with_separator(self.object.name.strip()).lower()
new_url = None
if self.object.name:
new_url = translit_with_separator(self.object.name.strip()).lower()
return {
'old_url': self.object.url,
'new_url': new_url,

Loading…
Cancel
Save