andrewtmendoza
andrewtmendoza
@jcass77 I apologize if this is covered elsewhere, but I haven't been able to find anything for this particular use case in the docs or Stack Overflow. If I use...
Can anyone recommend how to integrate radish into a Django project? Thank you!
``` django.db.utils.ProgrammingError: relation "easyaudit_requestevent" does not exist LINE 1: INSERT INTO "easyaudit_requestevent" ("url", "method", "quer... ^ ``` I followed the instructions and am able to see the tables inside the...
Would it be possible to add support for Python 3.7 dataclasses? https://docs.python.org/3/library/dataclasses.html
Hi @raphaelm - I'm working on a multi-tenancy app in which there is a many-to-many relationship between users and tenants. Is this the correct way to represent it in django-scopes?...
Hi @raphaelm First off, thanks for creating this package! I'm having an issue when trying to apply scopes to the user model. I have a multi-tenancy application, and I only...
Hello, is there a way to invalidate all cached values for a function versus invalidating the cached value for a given set of arguments?
I'm following the docs and using the following snippet to generate a SolidGauge Half: http://www.pygal.org/en/stable/documentation/types/solidgauge.html#half ``` import pygal gauge = pygal.SolidGauge( half_pie=True, inner_radius=0.70, show_legend=False, ) gauge.add('', [{'value': 79, 'max_value': 100,...