Ling Li
Ling Li
@axnsan12 : seems like the tox env djmaster is failing as [django 3.1](https://docs.djangoproject.com/en/dev/releases/3.1/) has the following update: `The compatibility import of django.core.exceptions.FieldDoesNotExist in django.db.models.fields is removed.` It seems that there...
ok, makes sense. However I think one of the problems with this script is that we don't have any test cases to verify if a particular change will continue to...
Not sure I fully understand your query. Could you elaborate? Is the query about having a nested dj-for loops inside BSS?
yes that's right, so if you look at the example bss html file: ``` This is the heading Lorem ipsum dolor sit amet … ``` You only need to define...
BSS won't know how to fully render django templates, so the workflow is to design the django template using BSS, then pass the converted file into django and render it...
I think having an option in settings to determine a list of headers to store. Also I think storing this data is a json field is the most flexible. Django...
I think you could create a new view: ``` class LoggingView(LoggingMixin, generics.GenericAPIView): def handle_log(): ``` Then update all your existing views to be derived from this view and you can...
@elebumm : did you manage to work out a solution? One other option is to create a django middleware class and add that in your middleware so every call could...
you could create a derived class with the mixin added and make your views all derive from that new class? On 26 Feb 2021 16:25, Denys wrote: Is there any...
you can run the command: pipenv lock --requirements and this will generate an updated requirements.txt based off of the pipfile. This would help maintain compatiability...