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
When i debug i found that in placeholderpadmin.py in def edit_field() the form goes invalid expecting for posttitle looks like
if not cancel_clicked and request.method == 'POST':
form = form_class(instance=obj, data=request.POST)
if form.is_valid():
form.save()
saved_successfully = True
form.errors in the above code prints the following. But i am editing the post_text only <ul class="errorlist"><li>title<ul class="errorlist"><li>This field is required.</li></ul></li></ul>
if I save a existend blog post in the detail view of the post, the change will not be saved to the database.
config:
BLOG_USE_PLACEHOLDER = False
I dont have any PARLER_LANGUAGES settings
Similar issue #123
The text was updated successfully, but these errors were encountered: