Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solution #855

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Solution #855

wants to merge 5 commits into from

Conversation

comnotaDidi
Copy link

No description provided.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job on implementing the task requirements! 🎉 Your code is well-structured and aligns with Django's conventions. Just a small suggestion: consider using get_object_or_404 in your car_detail_view to handle cases where a car might not exist, which will improve the user experience by returning a 404 error page. Keep up the excellent work! 🚀

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

taxi/views.py Outdated
Comment on lines 37 to 38
def car_detail_view(request: HttpRequest, pk: int) -> HttpResponse:
car = Car.objects.get(pk=pk)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider using get_object_or_404 instead of Car.objects.get(pk=pk) to handle cases where the car with the given primary key does not exist. This will return a 404 error page instead of raising an exception.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants