I am relatively new to Django and I'm making a small "social" project. It basically consists of user profiles, and on those profiles you can post "comments". I
How to display notification before two days from start date and display notfication on end date using django? from django.shortcuts import render from app.model
Here is what i tried to do: in my settings.py: TEMPLATES = [ ... 'OPTIONS': { 'context_processors': [ ...
I am writing data from a dash app to a SQL database setup by Django and then reading back the table in a callback. I have a column that the value should either
Model.py class Order(models.Model): customerID = models.CharField(max_length=300, blank=True, null=True) osm_bol = models.CharField(max_length=300, bla
Hi I'm trying to build a simple django app but I can't get index.html file to recognise the variables created in views.py. Nothing I do seems to work. Does it h
In my django project i have many different models which i want to query using GraphQL. For instance: class Country(): name = CharField(max_length=255) clas
I have checked every single solution on other questions but they are of zero help,using bulk email services also require having a domain name
I have multiple blogging websites made in WordPress. I want to make a website, by which when I add some article on any of these websites, I have to get a notifi
I'm pretty new to Django and have been experimenting making my own personal blog. General question I get that I can specify my blog post structure in models.py
After you sign up, you are prompted to a page that contains a form used for gathering additional information about the new user and after that it redirects you
I have been trying to run some code as a cron job using Django. There are a number of packages that help do this, but they do not seem to support the latest Dja
I want to replicate the admin functionality shown in the screenshot below on the client side. This is app is meant to cost a recipe based on the ingredients and
It's been hours since I tried to perform this operation but I couldn't figure it out. Let's say I have a Django project with two classes like these: from django
I have the following (simplified) model and factory: models.py class Event(): duration = FloatField() start_time = TimeField() finish_time = DateTim
I have model with manytomany field and the task is to make an validation in model layer. When i run this code, this error occurs: ValueError at /admin/main/boss
im learning Django framework and having some issues that i dont get it. Actually i have apps like Polls/ Blog/ and my homepage/ installed and working as i want
I have these 2 models in my models.py class Student(AbstractBaseUser): date_of_birth = models.DateField(null=True) phone_number = PhoneNumberField(null=
Error When Click Button for send data. Please Helping me to solve problem. Error When Click Button for send data. Please Helping me to solve problem. Error When
I am new to Django/Python, and am trying to figure out the best way to have global constants in my project that are available to templates in ALL APPS in the pr