Pablo849
Pablo849
```python class DocumentoGenerico(RegistroMixin): def dame_path(self): path = ['/'] try: path.append('{}'.format(self.content_type.app_label)) path.append('{}'.format(self.content_type.model)) path.append('registro-{}'.format(self.object_id)) except AttributeError: path.append('genericos') return path documento = PrivateFileField(_('Documento'), upload_subfolder=dame_path, null=True, blank=True) ``` It returns SuspiciousFileOperation in Django 2.2.20...
All scripts return 522 error
One of my overlays loads more than 25,000 records, so it takes a few seconds to show up on the map. What would be the best way to show a...
I have 556 FCM devices in my system. When I try to send a bulk message to all devices, I get "ValueError: messages must not contain more than 500 elements"....