Thomas Tartière
Thomas Tartière
In test.client.TenantClient, the "content_type" argument for the delete function is not passed to super().delete. This prevents the use of a different content-type while testing: ```python def delete(self, path, data='', content_type='application/octet-stream',...
As it is possible to load unit definitions from a file, would it be possible to add a "save_as_file" function? This would allow to create units dynamically and save them...
**Bug description** In the admin portal, django escape the sharable url for all blog posts, so the display looks like this:  Instead, this page should display a clickable html...
#### Context The EventHub SDK allows to specify the partitionKey for a batch of events, as shown here: ```python batch = hub_client.create_batch(partition_key=mykey) batch.add(EventData(json.dumps({ ... }))) hub_client.send_batch(batch) ``` #### Issue The...
First of all, thank you so much to all the maintainers of this project, I have been using in production for 6 months now and it's really great ! ##...
## Context As mentioned in the documentation (https://django-safedelete.readthedocs.io/en/latest/models.html#fields-uniqueness), if we need to define a field uniqueness for non-deleted objects, we have to define a custom constraint such as: ```python class...
Hi @escaped, I am using this nice package in a project and am starting to work on the transition to Django > 4 It looks like a few changes are...
Hi, First of all, thanks for the great course! I personally enjoyed the final assignment, and I am still making some improvements. I was curious to explore how others did...