adi

Results 21 issues of adi

When all translation inputs are initiated it would be nice to fire an event. I am manipulating form inputs (setting custom height), but I am having a race condition. My...

I get random KeyErrors from time to time. Any clues what its may be? ```python lib/python3.8/site-packages/formtools/wizard/views.py", line 415, in get_form form_class = self.get_form_list()[step] ```

I have recently moved to packaging from ubuntu 22.04 with python 3.10 and dh-virtualenv 1.2.2 and noticed that, during building package, python is creating `build` and `egg-info` folders in source...

I have noticed some issues while saving/opening documents written in EpicEditor. Editor is always adding break tag to each line of text on open. Do you know any workarounds? Can...

https://github.com/bogdal/gusregon/blob/34fd19ce620e6df3b9edb6fe4f07634ea7c898f6/gusregon/gus.py#L36 Default transport timeout is 300 seconds. That can block any webservices for good. There should be an option to alter that value in app settings – probably as a...

W sytuacji, kiedy serwer BIR1 jest wyłączony dla celów serwisowych, aplikacja wykorzystująca `gusregon` zwraca błąd w postaci `Server returned response (200) with invalid XML: Invalid XML content received (AttValue: "...

Hi, Supporting input file with multipart attribute (html5) is not so hard to implement. Basicly, I have done it using in view: ``` def form_valid(self, form): for image in self.request.FILES.getlist('image'):...

I need to enable only few dates in calendar and I initiate a form like this: ``` widgets = { 'pickup_date': DatePickerInput( options=FlatpickrOptions( enable=get_working_days_formated( arrow.get(timezone.now().date()).shift(days=1), arrow.get(timezone.now().date()).shift(days=2) ) ), } ```...