#LSPPDay53
Today, I learned file uploads in Django using models. I uploaded image files through the Django Admin Panel, stored them in the media directory, and displayed the uploaded images dynamically on the website.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay52
Today, I learned how to save form data to a database in Django. Created models, connected forms to them, stored user input in the database, and viewed the submitted records through the Django Admin Panel.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay50
Today, I learned about Django Auto Slug Fields. Practiced generating slugs from titles by converting them to lowercase and replacing spaces with hyphens. Slugs make URL meaningful and SEO-friendly than integer.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay49
Today, I learned how filter works in Django. I Practiced exact word search, __icontains for partial and case insensitive matching and displayed "No records found" message when the data was empty on searching.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay47
Today, I learned how to use HTML marquee tags in Django templates to display dynamic news headings. Practiced fetching news title from the database & rendering it inside scrolling marquee using Django template.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay46
Today, I learned to integrate TinyMCE in a Django project to enable rich text editing. I practiced configuring TinyMCE, adding HTMLField to models, and managing formatted content through the Django Admin panel.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay45
Today, I learned to limit Django QuerySet result using slicing & explored custom template filters like safe, upper, first, and more. Practiced displaying and formatting data in templates referring to a yt video.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay44
Today, I learned how to retrieve records from Django models using objects.all() and sort QuerySets with order_by() in both ascending and descending order referring to a youtube video with some practice.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay43
Today, I learned Django Models and how they define the database structure. I created model, generated migrations, applied them to database, and registered the model in the Django Admin Panel for data management.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay42
Today, I implemented manual form validation in Django. I enhanced my odd-even checker by validating empty input and displaying alert messages, making the form more user-friendly while improving input handling.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay41
Today, I built a simple marksheet calculator using Django Forms. I took marks for five subjects, calculated the total, percentage,division and showed them. It helped me in form handling and conditional logic.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay40
Today, I built a simple odd-even number checker using Django Forms. I accepted user input, validated the data, processed the logic in Django views, and displayed whether the entered number was odd or even.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay39
Today, I built a simple calculator using Django Forms. I handled user input, performed arithmetic operations, validated data, preserved form values after submission, and displayed the result on the same page.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay38
Today, I learned page redirection in Django & explored Django Forms. I built a simple marks calculator that takes user input, processes it using Django Forms and redirects users to display calculated result.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay37
Today, I learned Django forms using GET & POST methods. I explored CSRF tokens for security, captured form data through the browser Inspect tool & terminal, and understood how Django processes user input.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay36
Today, I learned to highlight active navigation links in Django. I explored HTTP request methods, practiced handling GET and POST requests and understood how data is sent and processed between client and server.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay35
Today, I learned URL templates, user login and logout, and handling cookies in Django requests. I practiced creating authentication flows and understood how cookies help manage user sessions and request data.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology
#LSPPDay34
Today, I learned how to use static files in Django & create reusable templates using common headers & footers. I also explored Django template tags like extends &include to build cleaner & modular web pages.
#60DaysOfLearning2026#LearningWithLeapfrog@lftechnology