You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
if we submit form with html in textfield, it will be rendered in admin page a workaround is to add try: value = strip_tags(self.cleaned_data[field]) except: value = self.cleaned_data[field]
in save method in forms.py @ line 338
The text was updated successfully, but these errors were encountered:
well i override change_form.html in admin templates of djangocms_forms, but i believe a default behaviour of showing data in admin/sent email is not to render html ... if you agree and see no future problems in adding strip tags in save method i can do it at home later
if we submit form with html in textfield, it will be rendered in admin page a workaround is to add
try: value = strip_tags(self.cleaned_data[field]) except: value = self.cleaned_data[field]
in save method in forms.py @ line 338
The text was updated successfully, but these errors were encountered: