skip to Main Content

I can't link CSS file to HTML file in Django project

HTML file is working well. But it's not linking with CSS, what I make in CSS simply does not work. HTML PAGE <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>TheWebPub</title> <link rel="stylesheet" href="stylepage.css"> </head> <body> {%…

VIEW QUESTION

Postgresql – How to annotate django queryest using subquery where that subquery returns list of ids from related model records

I have one database model, let's say ModelA: class ModelA(models.Model): field_1 = models.ManyToManyField( "core.ModelB", blank=True ) user = models.ForeignKey("core.User", on_delete=models.CASCADE) type = models.CharField(choices=ModelATypes.choices) The field_1 of ModelA is a many to many field that references ModelB. class ModelB(models.Model): uid =…

VIEW QUESTION

Html – JS Appended Array in FomData not accessable in Django backend

In a django template i have this js script: const formData = new FormData(form); formData.append('taglist', JSON.stringify(selectedTagIds)); console.log(JSON.parse(formData.get('taglist'))) console.log(formData.get('title_raw')) form.submit() selectedTagIds is an array. The console logs it correctly. After submitting I can access every standard form field in the django…

VIEW QUESTION
Back To Top
Search