🚀 Currently building a To-Do App using Django! Here’s what I’ve implemented so far: ✅ Created a Task model in Django ✅ Built the frontend using HTML, CSS, and Bootstrap ✅ Displaying all tasks on the dashboard ✅ Added a Completed Tasks section Next step: 1.Implementing the Add Task feature from the input field in the nex few days. 2. Implemente“Mark as Done” to move tasks to completed tasks section Still improving the project as I continue learning Django. 🔗 GitHub: https://lnkd.in/dJypyWh3 #Django #Python #WebDevelopment #BackendDevelopment #LearningInPublic
Django To-Do App Development Update: Task Model and Frontend Implemented
More Relevant Posts
-
Spent way too long debugging a 404 error in Django recently. I had this in my resumes/urls.py: path('resumes/', views.upload_resume) Which combined with the main urls.py prefix gave me /resumes/resumes/ The fix was just changing it to an empty string: path('', views.upload_resume) If you're learning Django, remember - include() joins the prefixes. Whatever you write in the main urls.py is already part of the URL. Your app's urls.py only defines what comes after. Hope this saves someone an hour. #Django #Python #BackendDevelopment #JuniorDeveloper
To view or add a comment, sign in
-
My developer growth strategy: • Build projects that solve real problems • Focus on one stack (Python + Django + Vue) • Learn only what I need (no random tutorials) • Ship fast, improve later What most people do instead: -Jump between technologies -Watch endless courses -Build nothing meaningful That’s why they stay stuck. Simple strategy. Hard execution. But it works. #Developers #Python #Django #VueJS #CareerGrowth
To view or add a comment, sign in
-
-
Most Django tutorials teach you how to build features. Very few teach you how to structure a real production project. After working on multiple Django systems, I realized that bad project structure becomes technical debt very quickly. So I wrote a complete guide on: • Production Django architecture • Service layer pattern • Selectors for queries • Environment-based settings • Scalable app structure If you're building serious Django applications, this can save you months of refactoring later. Full article: https://lnkd.in/dVNbu939 If you found this useful, share it with your team 👇 #django #webdevelopment #backend #python
To view or add a comment, sign in
-
Day-114 📘 Python Full Stack Journey – Django Templates, Loops & Navigation Today was a big step forward in my Django learning journey, where I explored dynamic templates, multiple pages, and reusable layouts. 🚀 🎯 What I learned today: 🔁 Django Template Loop Used {% for %} loop to iterate over data passed from views.py Displayed list values dynamically using {{ }} Learned the importance of closing loops with {% endfor %} to avoid errors 📄 Multiple HTML Pages Created multiple pages: Home, About, Contact Connected them through views and URLs Navigated between pages using different routes (/, /ab, /co) 🧩 Template Inheritance Created a base.html (parent template) Used {% extends %} and {% block %} to reuse layout across pages Avoided repeating common UI elements like header/footer 🧭 Navbar Creation Built a simple navigation bar using HTML & CSS Linked pages (Home, About, Contact) for smooth navigation Added hover effects for better UI experience This session really helped me understand how Django makes websites dynamic, reusable, and well-structured. Seeing multiple pages connected with a common layout felt like building a real web application! 💻✨ #Django #Python #FullStackDevelopment #WebDevelopment #Backend #Frontend #CodingJourney #LearningToCode #Upskilling #TechSkills #ContinuousLearning
To view or add a comment, sign in
-
-
JavaScript is dominating… but no one talks about how hard it actually is. Yesterday I ran a poll asking developers which programming languages they use the most. The result was interesting. About 75% chose JavaScript and TypeScript, while Python and Rust had around 13% each. Not really surprising… but still worth thinking about. I personally use JavaScript and TypeScript a lot, and I also write Python. Each one has its own strengths, but JavaScript really stands out because of how broad it is. Frontend, backend, APIs, scripting… it’s everywhere. At the same time, JavaScript is not the easiest language to fully grasp. It can be unpredictable, and it definitely humbles you as you go deeper. But maybe that’s part of why it’s so powerful. Curious to hear from others, what language do you enjoy working with the most right now? #JavaScript #TypeScript #Python #Backend #WebDevelopment #Programming #DevCommunity #BuildInPublic
To view or add a comment, sign in
-
-
I recently developed 𝗕𝗿𝗲.𝗮𝗸 – 𝗨𝗥𝗟 𝗦𝗵𝗼𝗿𝘁𝗲𝗻𝗲𝗿 𝗪𝗲𝗯 𝗔𝗽𝗽𝗹𝗶𝗰𝗮𝘁𝗶𝗼𝗻 using Django. Bre.ak is a web-based application that converts long URLs into short and easy-to-share links in the format bre.ak/XXXXX. The application provides a clean dashboard interface where users can create, view, and manage shortened links efficiently. 𝗙𝗲𝗮𝘁𝘂𝗿𝗲𝘀: • Generate short URLs instantly • Dashboard with all created links • Automatic redirection to the original URL • Website favicon displayed for each link • Simple and user-friendly interface 𝗧𝗲𝗰𝗵 𝗦𝘁𝗮𝗰𝗸: Python, Django, HTML, CSS, SQLite, Git Through this project, I gained practical experience in backend development, database integration, and building a complete web application workflow using Django. 𝗚𝗶𝘁𝗛𝘂𝗯 𝗥𝗲𝗽𝗼𝘀𝗶𝘁𝗼𝗿𝘆: https://lnkd.in/gSDZyz4r #Python #Django #WebDevelopment #StudentProject #BackendDevelopment #GitHub #Learning
To view or add a comment, sign in
-
Today I learned about static files in Django. In a Django project, the static folder is used to store files like CSS, JavaScript, and images that help with the design and functionality of the website. To use static files, we need to configure them in the settings.py file: STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static') ] After setting this up, we can easily load CSS, JS, and images in our templates. Slowly building my understanding of Django step by step. #Django #Python #WebDevelopment #Fullstackdeveloper
To view or add a comment, sign in
-
Official SDKs for JavaScript and Python 🚀 Building on SchedulifyX just got easier. Our SDKs wrap the entire REST API with: 🟡 JavaScript/TypeScript SDK Full TypeScript types and autocomplete Async/await patterns npm install @schedulifyx/sdk 🐍 Python SDK Type hints throughout Async support pip install schedulifyx Both SDKs include built-in auth, error handling, pagination helpers, and retry logic. Whether you're building a custom CMS integration, automated reporting, or a white-label dashboard — ship it in hours, not days. → schedulifyx.com #SchedulifyX #SDK #JavaScript #Python #DevTools #API #SocialMediaAutomation
To view or add a comment, sign in
-
-
Think coding is complicated? Think again. Here are 3 simple snippets to make your projects easier: 1️⃣ WordPress: Add a custom greeting 2️⃣ JavaScript: Toggle a menu with one click 3️⃣ Python: Read & print a file Coding doesn’t have to be a headache. What snippet do you want to try first? 👨💻✨ #coding #programming #wordpress #javascript #python #techmadeeasy #savvymatthew #TechTalk, #SavvyMatthew, #ExploreWithMatthew, #DigitalAdventures, #ModernTechLife, #CreativeJourneys, #TravelAndTech, #MotoVibes, #SmartLiving, #SavvyStories
To view or add a comment, sign in
-
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development