Jack Cushman

Results 80 comments of Jack Cushman

... or think through what other parts of the site should require reauthentication.

Would it make sense to tag stuff like this "future" (or some other roadmap-type tag, like "roadmap_2.0", "roadmap_future") so we can pull up a list of enhancements that are closed...

Oh -- I hadn't used milestones before. Interesting. Milestones look like the right tool for the job, but it might be slightly annoying that the default Github view doesn't show...

We think it might also help with spam filters if our new account emails looked more like other new account emails and less like spam (single line of unformatted text).

Next actions: - [ x] Becky will poke Adam when the email templates are ready for editing.

Awesome! Thanks for working on this, it looks great. I converted a multidb project over to the experimental API and it seems to be working, including flushing data between test...

@jgb here's what I'm using successfully in case it helps. Packages: ``` Python 3.7.10 Postgres 11.11 Django==3.2.3 pytest==6.0.1 pytest-django==4.3.0 pytest-xdist==1.32.0 ``` Databases: ``` DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2',...

I think this is a good feature request. It's a valid and common pattern to have in base.html `{{ foo|default:"Sitewide Foo" }}` and then for individual pages to provide `'foo':...

> I think as long as default does not explicitly handle non-existing variables, then it is effectively accurate. > I looked into the documentation for both the default and default_if_none...