Ahmad Khayyat
Ahmad Khayyat
Consider an Attic command with long output, e.g. `attic list ::` for an archive with many files. When the output of such a command is piped to something like `less`,...
On template errors, I get the error: `AttributeError: 'Settings' object has no attribute 'TEMPLATE_DEBUG'`. On setting the `TEMPLATE_DEBUG` setting, Django complains that it is deprecated: ``` The standalone TEMPLATE_* settings...
I'm trying to use geesefs with Oracle Cloud (OCI) Object Storage. I can use s3fs, but not geesefs: s3fs -o url=https://.compat.objectstorage..oraclecloud.com -o use_path_request_style -o passwd_file=s3fs-credentials Works! ./geesefs --endpoint https://.compat.objectstorage..oraclecloud.com --debug_s3...
If sending activation emails is enabled (`SEND_ACTIVATION_EMAIL == True`), updating a user currently sends an activation email! https://github.com/sunscrapers/djoser/blob/master/djoser/views.py#L148: ```python class UserViewSet(viewsets.ModelViewSet): ... def perform_update(self, serializer): super().perform_update(serializer) user = serializer.instance #...
#### What is the problem you are having with rclone? Files created with the wrong mime types (`application/octet-stream`). When I mounted the `/etc/mime.types` file from the host to the Docker...
1. is there a way to return country names instead of codes when using `CountryFieldMixin`? 2. When using a model field with `multiple=True`, how to get country names instead of...
Currently, it seems a user with read access to the tree model is able to move nodes in the admin. Is there a way to allow moving nodes only if...
### Preflight checklist - [X] I could not find a solution in the existing issues, docs, nor discussions. - [X] I agree to follow this project's [Code of Conduct](https://github.com/ory/kratos/blob/master/CODE_OF_CONDUCT.md). -...
The documentation website appears to be gone. Is the documentation available elsewhere?
**Problem Statement** When accessing the related object of a historic instance's foreign key from a model method such as `__str__()`, the related object is looked up in the main table,...