Lefteris Nikoltsios
Lefteris Nikoltsios
Hi @Michaeljczhang, Yes, you are true. You can click the button but nothing will happen. Django Modelform [will remove the readonly fields from the form](https://github.com/django/django/blob/f5c9bbd3e37d00508123b860588307e1026e8aec/django/contrib/admin/options.py#L653) so when Django will try...
Currently, there is no way to find that. I will start working on this soon.
Hi @PetrDlouhy, It's a stand alone work. I saw your commit and I've noticed your commit (https://github.com/django/django/pull/6734/commits/184f41609c3137d7703bff23e1d2d82c4c5a9460) and from what I saw, the two implementations share common features :+1:
Hi @cheng10, Thank you for the report. To implement something like this requires different permissions per action which adds a lot of complexity. For example let's say that we have...
Yes, I know. This is annoying. I need to override the django templates. I will give it a try.
Looking the code of the control.py ``` @click.argument("action", type=click.Choice([ name for name, info in Panel.meta.items() if info.type == 'control' and info.visible ])) ``` this above decorator doesn't read the global...
I can verify that this is still an issue on celery 5.2.x
Also, with `late_ack=False` the celery worker can't survive a rabbitmq lost connection. It seems that kombu or billiard gets really confused when they try to reconnect and at the end...