Best of DjangoDecember 2024

  1. 1
    Article
    Avatar of communityCommunity Picks·1y

    HTMX Saved Template Engines

    HTMX extends the capabilities of template engines like Django's by allowing developers to build dynamic web apps with less Javascript. It simplifies the process of creating interactive UIs by using custom attributes within HTML to perform AJAX requests and update content dynamically. This approach can enhance page speed and user experience, offering flexibility similar to client-side frameworks while staying within a template engine environment.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·1y

    How Django's MVT Architecture Works: A Deep Dive into Models, Views, and Templates

    Django is a high-level Python framework known for its simplicity and efficiency in building web applications. The Model-View-Template (MVT) architecture is central to Django, comprising Models (data layer), Views (logic layer), and Templates (presentation layer). This post provides a deep dive into each component, including creating a simple task list application to illustrate their interaction and function. It also offers a step-by-step guide to setting up a Django project, defining models, creating views, and rendering templates.

  3. 3
    Article
    Avatar of tdsTowards Data Science·1y

    Building a Custom AI Jira Agent

    Learn how to build a custom AI Jira Agent using Google Mesop, Django, LangChain Agents, CO-STAR, and Chain-of-Thought prompting combined with the Jira API to automate Jira tasks. This project demonstrates an AI-driven chat interface for interacting with Jira, automatic ticket triage, user story creation, and priority assignment. The setup involves Docker, PostgreSQL, and key Python libraries in a comprehensive, open-source solution.