This is moreso a question about pyvis graphs, but also involves a django server running with a sqlite3 backend. One of my views needs to produce an interactive
I have implemented a solution for checking a new password against the last 5 passwords like so: Created 5 fields in a user profile table to store the encrypted
I have the following model: class Category(models.Model): name = models.CharField(max_length=255) parent = models.ForeignKey('self', related_name='chil
I am trying to write a middleware class that ensures that the user is logged in. But the problem is this middleware class will only be applicable to a small set
When I run $ python manage.py inspectdb --database=mssql_database I have the following error django.db.utils.Error: ('01000', "[01000] [unixODBC][Driver Manager
I have a field in a Django Model for storing a unique (hash) value. Turns out that the database (MySQL/inno) doesn't do a case sensitive search on this type (VA
I am trying to migrate a DB from sqlite to postgresql...so I typed: sudo -u postgres psql postgres=# ALTER USER postgres WITH PASSWORD 'newpassword'; and the
html code {% if request.user %} <a href="{% url 'main:logout' %}"> Выход </a> {% else %} <a hr
when DEBUG=TRUE,media_url is working,but DEBUG = False ,returns not working. This is my setting file. setting.py DEBUG = False ... MEDIA_URL = "/pics/" MEDIA_
I think i tired everything in trying to solve this problem. I'm getting a NoReverseMatch i understand its from my "urls" but that's basically it, I was using ur
I added a new permission to my model, and than used manage.py makemigrations. it created a migration that alters the model options (specificly the permisions..)
I have a question about cors implementation in django. Having a problem with setting the correct cors values. My deployment is on docker. I have a deployed 3 co
I have started to work on a Django project, and I would like to set some environment variables without setting them manually or having a bash file to source. I
I am using Ubuntu 18 servers and using nginx with gunicorn I follow Digitalocean tutorial for server setup. I successfully did for one project but now I need to
Using django-allauth I've enabled google authentication on backend. I can sign in to my Django project and everything. Now, I want to connect that authenticatio
I am editing a large number of model instances in django and I would like to save all these changes at once. The instances are already created so I am not looki
I am using Django Rest Framework Token authentication and if i do curl http://localhost:8000/api/v1/users/?format=json -H 'Authorization: Token 0a813fdcd3f8846d
I have integrated swagger with django rest framework, but the swagger docs does not create a input box to post data for post request. I am using Function based
I would like pytest-django to install a Postgres extension when it creates a test database. I've been mucking with conftest.py to try to get this to work, but
I'm doing simple to do app in django. I want user to have possibility to add boards and task (task is specified for board). When user is adding task (form creat