As a Site User I can view a list of services on the homepage so that I can quickly learn about the different grooming options available.
Acceptance Criteria
Given a user visits the homepage
When the user scrolls beneath the about information
Then the user should see a list of all available services
And each service should display its name, description, and price
Tasks
[x] Create a Service model in Django with fields for name, image, description, price and duration.
[x] Configure Django’s admin to manage the Service model, allowing easy input and modification of service details.
[x] Develop a Django view to fetch all services from the database.
[x] Design a visually engaging and responsive section on the homepage for displaying services using Bootstrap, ensuring consistency with the overall website theme.
[x] Conduct thorough testing on various devices and browsers to ensure the services section is displayed properly and is responsive.
Services list presented on the home page. Each service has a name, image, description, price and duration displayed. The services list can be edited and updated in the admin panel.
As a Site User I can view a list of services on the homepage so that I can quickly learn about the different grooming options available.
Acceptance Criteria
Tasks