python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How do I make my urlpatterns smarter, to avoid cumbersome code in my templates?
Right now I have defined my URLs such that they can include different combinations of category (always on), attribute_slugs (1 and/or 2) and brand_slug, all using the urlpatterns defined below.
In my ...

Frederik Faarup
Votes: 0
Answers: 1
Using related_name in Django
I am getting confused with the usage of related_name in django models, i know that the idea is to give me access to all the fields of a different table with foreignkey i am just not sure how to use it...
newprogrammer12
Votes: 0
Answers: 2
Not getting correct output in django filter
I have following models.
class Stocks(models.Model):
ticker = models.CharField(max_length=30, primary_key=True, unique=True)
company_name = models.CharField(max_length=100, blank=True, null=Tr...

shyam yadav
Votes: 0
Answers: 1
How to use several bootstrap modal in one view for CRUD action in Django?
I have a view by several modal and forms like Add_image , Add_birthday and a table for show all objects.
I want for every ROW create button and modal for edit. When user click Edit_button open a modal...
mirage
Votes: 0
Answers: 1