Nikolay S.
Nikolay S.
Dear, I get error if i do post and the form has been filled out incorrectly. On line 163 in djng/forms/widgets.py. 'unicode' object has no attribute 'url' Value is "u'Drop...
Hello, I am using django 1.11. When i do update object with **Ajax** i get error for ImageField. That is "FileExtensionValidator" from django who expects an object for validation but...
In django < 1.11 Input widget has not attribute "template_name". Input rendered as ``
Hi @kmmbvnr , I also tried `{% part form.captcha errors %}Render me{% endpart %}`. This is very useful in some cases like ReCaptcha. Or i'm wrong and there's a possibility...
Form: ``` class ContactForm(ModelForm): scope_prefix = 'contact_data' form_name = 'contact_form' layout = Layout( Row('name', 'function'), Row('primary', 'user_pwd') ) class Meta: model = Contact fields = ('name', 'function','primary', 'user_pwd') def __init__(self,...
Hi everyone, I am using django 1.11, django-tinymce4-lite 1.7.4. **### This problem only occurs in internet explorer 11.** `ManifestStaticFilesStorage` is a subclass of the `StaticFilesStorage` storage backend which stores the...
Pressing the Escape key clears the entry. It would be perfect if we could add a clear event: `eventEmitter("clear", ctx);` https://github.com/TarekRaafat/autoComplete.js/blob/60329e55b38abe521517f608597f0dc4bf5869c7/src/controllers/listController.js#L259
FileNotFoundError: [Errno 2] No such file or directory: 'local-ner-cache/9963044417883968883.spacy'
I changed the `spacy.NER.v2` to `spacy.NER.v3` ``` ValueError: Prompt template in cache directory (local-ner-cache/prompt_template.txt) is not equal with current prompt template. Reset your cache if you are using a new...
https://github.com/django-haystack/django-haystack/blob/c5066967a92041b0be5a09282514419878493b45/haystack/generic_views.py#L61 As Django's default handling of the HEAD method as GET, it would be beneficial to include data in the form even when a HEAD method is requested to align...
Issue https://github.com/django-haystack/django-haystack/issues/1992#issue-2455725546 - Implemented handling for `track_total_hits` in the Elasticsearch search backend. - Supports `bool` values (True/False) and `int` values. - Added a warning for invalid `track_total_hits` values. - Ensured...