Iyanuoluwa Ajao
Iyanuoluwa Ajao
A contributor (@noirtiercano ) made an excellent observation while working on another task: > "I noticed that the "Category" field in the event creation form is required, but no default...
To make MeetHub more flexible and user-driven, we should allow event creators to add a new category if a suitable one doesn't already exist in the list. This is a...
The meethub/accounts/forms.py file contains the SignUpForm, but there are no tests for it in meethub/accounts/tests/test_forms.py. We need to add tests to ensure it validates data correctly and creates a user...
The views in meethub/events/views.py could use more descriptive docstrings. Good docstrings help new contributors understand the code faster. Let's go through the file and ensure every class and method has...
The HomePageView in meethub/accounts/views.py uses hardcoded numbers for stats like "Total Events" and "Total Groups". Let's update the view to query the database for these numbers. ## Acceptance Criteria: 1....