Explore

django ×
  • 3 important things I overlooked during code reviews | Piglei

    Code review is a popular practice in software development. By incorporating human reviews before merging code...

  • screenshot

    Django Girls Ekpoma on 27th April 2024

    Django Girls Ekpoma Workshop April 19 to April 21, 2024 DJANGOGIRLS.ORG

  • screenshot

    Is this possible in Django ORM? I want to query on reverse foreign key relation ship. I need quite a few queries from the database

    What I have? I have models as below. class Product(models.Model): title = models.CharField(max_length=500) timestamp = models.DateTimeField(auto_now_add=True)...

  • screenshot

    Conditional filling of dropdown in Django backend with list_filters

    My models.py: from smart_selects.db_fields import ChainedForeignKey class Funder(models.Model): name = models.CharField(max_length=200) scheme = models.ManyToManyField('Scheme', blank=True) class...

  • Enforcing conventions in Django projects with introspection

    Naming conventions can make a big difference to the maintenance issues in software projects. This post...

  • screenshot

    Cloudinary image issues in react/django project

    I'm creating a ecommerce website and I'm having some issues with my cloudinary uploads. When I...

  • screenshot

    Django: FieldError: Cannot resolve keyword 'name' into field. Choices are: Name, id

    Just get started with Django. I was following this guide:text, and I encountered this issue at...

  • screenshot

    AlpineJS not initializing in dynamically loaded content

    I am creating a custom searchable select widget in my django application. When returning the template...

  • screenshot

    Update only specific fields in a models.Model Django

    I have an APP to rate supervisors to personnel in Django. I have model in models.py...

  • screenshot

    Django security releases issued: 5.0.3, 4.2.11, and 3.2.25

    Django Security Releases Issued: 5.0.3, 4.2.11, and 3.2.25 DJANGO SOFTWARE FOUNDATION

  • screenshot

    Django Girls Eket on 16th March 2024

    Django Girls Eket Workshop March 15 to March 17, 2024 DJANGOGIRLS.ORG

  • 6 ways to improve the architecture of your Python project (using import-linter) | Piglei

    Improve the Architecture of Your Python Using import-linter For large Python projects, managing dependency relationships between...

  • screenshot

    Django Girls Cagayan de Oro City on 9th March 2024

    Django Girls CDO Workshop 2024 March 9 to March 10, 2024 DJANGOGIRLS.ORG

  • screenshot

    Advanced filtering for filtering properties in Django

    Is anyone able to help me or give me some hints regarding Django? Specifically, I'm working...

  • screenshot

    Why is Vercel proxy to API route not working?

    I have my frontend in Vite (React, TS) and backend in Django. When I make request...

  • The novice and the master: 5 programming jokes | Piglei

    Character descriptions: The novice: New to programming, eager to improve his software development skills, he is...

  • screenshot

    Django Girls Ho on 24th February 2024

    Django Girls Ho February 24 to February 25, 2024 DJANGOGIRLS.ORG

  • screenshot

    Django security releases issued: 5.0.2, 4.2.10, and 3.2.24

    Django Security Releases Issued: 5.0.2, 4.2.10, and 3.2.24 DJANGO SOFTWARE FOUNDATION

  • screenshot

    Implementing a lasting service pattern for your business logic

    Implementing a Lasting Service Pattern for Your Business Logic Best practices for building an understandable, maintainable...