Mustafa Abualsaud
Mustafa Abualsaud
Not an issue but it will be nice to support forms. It will save a lot of time.
In the function dumps, we are joining the parts by a comma, which may not be the best delimiter in the loads function because extra_contexts may have string fields that...
Is there a way to check if an element is in the viewport but has to be above the bottom 100px from the bottom edge of the viewPort? sorta like...
`FRIENDS_COUNT` and `FOLLOWERS_COUNT` fields were getting the opposite values.
Fixes the issue of malformed runs.
There’s still many instances in the front end that I feel need to be cleaned. These were mainly for studying user behaviour for our first study/experiment where we needed to...
I have this view: ``` @method_decorator(login_required, name='dispatch') class EventCreateView(generic_view.CreateView): model = Event template_name = 'event/create.html' form_class = EventForm object = None def form_valid(self, form): self.object = form.save(commit=False) self.object.user = self.request.user...