Tonmoy

Results 4 issues of Tonmoy

My model looks like this: ``` class Question(ModelWithFlag): ... FLAG_BOOKMARK = 10 def bookmark_add(self, user): return self.set_flag(user, status=self.FLAG_BOOKMARK) def bookmark_remove(self, user): return self.remove_flag(user, status=self.FLAG_BOOKMARK) def bookmark_check(self, user): return self.is_flagged(user, status=self.FLAG_BOOKMARK)...

question

**Describe the bug** Request processes for about 30 seconds and then produces Secure Connection Failed error when exporting data. Heroku logs: ``` Exception while resolving variable 'subtitle' in template 'admin/import_export/export.html'....

bug

By default, if you're using JWT and Token Blacklist, the Logout view tries to find the Refresh token in the request body. However, if I am using HttpOnly cookie, my...

I'm using the latest release of Sveltekit and I've installed svelte-time as a dev dependency. I'm getting this error at the most basic usage of the module: `` ``` 500...