Nima
Nima
I am using django-address 0.2.5 in my django 3.1 app. I am trying to run some parts of the app from the command line using: ```python from django.conf import settings...
In my DRF project, I'm trying to implement filtering for [multi-valued relationships](https://docs.djangoproject.com/en/2.2/topics/db/queries/#spanning-multi-valued-relationships) that combines filters with logical `AND`s, like in: a) `Blog.objects.filter(entry__headline__contains='Lennon', entry__pub_date__year=2008)` instead of `OR` like in: b) `Blog.objects.filter(entry__headline__contains='Lennon').filter(entry__pub_date__year=2008)`...
Since January Hetzner has a CSI driver for their scalable "Volumes": https://github.com/hetznercloud/csi-driver Wouldn't that be a superior alternative to Rook et al. in the case of Hetzner? Thanks for this...
First of all many thanks for the great work! I am dedicated to use this package for project I'm working on. However, I have spent a few days now trying...
I would like to link the same page in different places within my navigation, which I think is a fairly common use case. However, it seems it is not possible,...
@jeroen suggested the following approach to build a mongolite query using jsonlite [here](https://github.com/jeroen/mongolite/issues/46#issuecomment-237232748): ```R query
I was able to create my navigation structure in the UI Navigation tab that this plugin adds to Strapi admin. However, when I make changes to my navigation (adding new...
This PR adds compatibility with YSU for global aliases and for unsetting aliases.
**Describe the bug** When running `skyplane init` I get a file not found error: ``` Traceback (most recent call last): File "C:\Users\nimam\miniconda3\lib\runpy.py", line 197, in _run_module_as_main return _run_code(code, main_globals, None,...
When using `rest_framework.filters.OrderingFilter` in a view, one can add a list of comma-separated field names to an "order" query parameter (see the [docs](https://www.django-rest-framework.org/api-guide/filtering/#orderingfilter)). However, those lists are currently not affected...