Commit 7c050bcb810feefd4c78619eef47fc8d2fd63107

Authored by Marcel Kawski
1 parent a9ce5220

Correct messages in views

Showing 1 changed file with 3 additions and 3 deletions
collector/storage/views.py
... ... @@ -1203,9 +1203,9 @@ class DocTypeView(UpdateView):
1203 1203 context['submit_btn_text'] = 'Zmień'
1204 1204 if self.object.parent is None:
1205 1205 messages.warning(self.request, 'Uwaga! Zmiana typu dokumentu głównego nie powoduje zmiany typów '
1206   - 'poddokumentów. Można je zmienić nastomiast manualnie.')
1207   - messages.warning(self.request, 'Uwaga! Zmiana typu dokumentu może spowodować usunięcie danych typowych dla '
1208   - 'tego typu.')
  1206 + 'poddokumentów. Możesz je zmienić manualnie.')
  1207 + messages.warning(self.request, 'Uwaga! Zmiana typu dokumentu może spowodować usunięcie danych '
  1208 + 'charakterystycznych dla tego typu.')
1209 1209 return context
1210 1210  
1211 1211 def get_form_kwargs(self):
... ...