Fullstack Fruit & Veg Shop: A web application developed with HTML, CSS, and JavaScript for the frontend, and Django for the backend. Features include user authentication, a product catalogue, shopping cart functionality, and order management. and much more
Added a context_processor.py file to the testimonials app folder, enabling testimonials to be accessed
from anywhere in the application template without having to declare it inside a context dictionary.
Integrated approval testimonials into the UI, allowing them to be displayed on the index HTML pages.
Made the testimonial image profile optional.
Changed the field name title to job_title for clarity and updated all instances using the original field, including tests.
Deleted all instances of the previous testimonials from the database, as they used the original title field.
Now, the application displays the approval testimonials on the home page, with or without a picture.
If no picture is added, the application simply doesn’t display one.
Added a
context_processor.py
file to the testimonials app folder, enabling testimonials to be accessed from anywhere in the application template without having to declare it inside a context dictionary.title
tojob_title
for clarity and updated all instances using the original field, including tests.title
field.Now, the application displays the approval testimonials on the home page, with or without a picture. If no picture is added, the application simply doesn’t display one.