Closed brianefurlong closed 1 year ago
@kw Hey I made changes in response to your above comments. Please take a look and let me know what you think!
Heads up in accounts.models.py:
Line 7 has a comment to make isort stop trying to move it above the import in line 5. When it does that, it results in a circular import. Is there a way to prevent the circular import?
Heads up in accounts.models.py:
Line 7 has a comment to make isort stop trying to move it above the import in line 5. When it does that, it results in a circular import. Is there a way to prevent the circular import?
That one is my fault. I've corrected the circular dependency on my main branch. If you merge or rebase you should get the fix, though feel free to leave it as-is for now.
Changes in response to above comments committed.
Changes in response to above comments committed.
Closes https://github.com/kw/camp/issues/6
Created Membership model in accounts.models. Created paths for Membership views in accounts.urls. Added views for Membership CRUD. Created templates for Membership CRUD.