Graham Ullrich
Graham Ullrich
Good catch @Tikam02, thanks. pinax-teams is a Pinax app, but not part of the "official" apps seen by invoking `pinax apps`: ```shell $ pinax apps Release Application ------- --------------- 2.0.3...
Here's the test coverage for pinax-teams: https://codecov.io/gh/pinax/pinax-teams/tree/master/pinax/teams @Tikam02 note middleware.py has 0% coverage. Apparently you're the first dev upgrading to the latest pinax-teams who is using `TeamMiddleware` with Django 2.0.
@Tikam02 Thanks for your PR offer! We're always happy for community help. Preferably convert `TeamMiddleware` to [new-style MIDDLEWARE](https://docs.djangoproject.com/en/2.0/topics/http/middleware/#upgrading-pre-django-1-10-style-middleware). I'm not sure what you mean by "the above link provided" as...
@Tikam02 one more thought... in order to move forward on your project, perhaps updating `TeamMiddleware` to inherit from the `MiddlewareMixin` class is a good short-term solution. Again PRs welcome!
Update: Templates should be added to extracted from the team-wiki starter project and added to `pinax-templates`.
As mentioned in the "django-20" branch merge, I have kept django-reversion in this project for the initial Django v2.0 compatible release so existing users have a path forward. Let's examine...
@jcugley If you provide a bit more of the stack trace perhaps I can help. Searching all Pinax apps on github I do not find a URLpattern anywhere close to...
@jcugley please show me the "wiki" portion of your urls.py. Perhaps you put in a backslash instead of a forward slash after "^wiki" in that pattern? Double-check against https://github.com/pinax/pinax-wiki/blob/master/README.md#installation urlpattern...
Oh, now I see you edited your comment to add the use of "pinax" CLI tool. You did not add the urls manually. Yep, you've discovered a bug... not in...
@jcugley thanks for helping debug this... in your urls.py, try ``` path("", include("pinax.wiki.urls", namespace="pinax_wiki")) ``` in place of ``` path("", include("pinax.wiki.urls")) ``` This is an oversight in pinax-starter-projects. pinax-wiki urls...