Django community: RSS
This page, updated regularly, aggregates Django Q&A from the Django community.
-
Can't install extension in VS Code: XHR failed
I can't install the extensions in VS Code and I'm a Mac user. When I tried to install the extension, it gave me an error and suggested me to install it manually. And I'm currently building my Django app, I wonder if there are any recommendations for the extensions that are quite useful for HTML or in general. I tried to search for the solution online but I found out I didn't have the problem with "fetching the extension", I just failed to install it. Here is the log with the errors. -
python/django create a text file and make user download it
does anyone know if there is a way to create a text file who can be downloaded by an user of my django site ? Can someone help me or send me tutorials to show me how to do it ? Thanks -
Have to save ModelChoiceField into database using Django forms and Template
Here I am using Django 3.0 and Python 3.7 I am not able to save ModelChoiceField into database Here is my models.py class ProductionProcess(models.Model): client = models.ForeignKey(Client,on_delete=models.CASCADE) name = models.CharField(max_length=500) order = models.IntegerField(default=None, null=True, blank=True) milestone_1 = models.CharField(max_length=200, blank=True, null=True) def __str__(self): return self.name Here is my views.py class ProductionProcessAddCreateView(CreateView): template_name = 'core/production_process_form_1.django.html' form_class = ProductionProcessForm context_object_name = "production" model = ProductionProcess def form_valid(self, form): self.object = form.save(commit=False) self.object.client = self.request.user.client try: self.object.save() messages.success(self.request, 'Production Process created successfully.') except BaseException as e: logger.exception(e) messages.error(self.request, 'Failed to create a Production Process.') return HttpResponseRedirect(reverse("production_process")) Here is my forms.py class ProductionProcessForm(forms.ModelForm): milestone_1 = forms.ModelChoiceField(queryset=ProductionProcess.objects.values_list("name", flat=True).distinct(),empty_label=None) class Meta: model = ProductionProcess fields = ['name','order','milestone_1'] exclude = ['client'] Here is my production_process_form_1.django.html <form class="form-horizontal" method="post"> {% csrf_token %} <div class="row"> <div class="span10 offset1"> <div class="control-group"> <label class="control-label pull-left" for="{{ form.name.auto_id }}">{{ form.name.label }}</label> <div class="controls"> {{ form.name}} </div> </div> <div class="control-group"> <label class="control-label pull-left" for="{{ form.order.auto_id }}">{{ form.order.label }}</label> <div class="controls"> {{ form.order}} </div> </div> <div class="control-group"> <label class="control-label pull-left" for="{{ form.milestone_1.auto_id }}">{{ form.milestone_1.label }}</label> <div class="controls"> <select id="id_milestone" name="milestone_1"> <option value="" selected="selected">---------</option> {% for cat in form.milestone_1 %} <option>{{cat}}</option> {% endfor %} </select> </div> </div> </div> </div> <div id="form-buttons-container" class="form-actions"> <input type="submit" class="btn btn-inverse" … -
Django-tables2 - How do I disable pagination for a SingleTableMixin,FilterView?
How can I disable pagination in FilterView? All the commented out code is what I've already tried. None of which is working. As soon as I filter the table, the pagination appears at the bottom and part of the filtered result is not visible (unless you go to the next page) class AlpineTableView(SingleTableMixin, FilterView): table_class = AlpineTable queryset = Artikel.objects.all() filterset_class = AlpineFilter # def get_table_pagination(self, request): # return False # def get_table_pagination(self, table): # return False # table_pagination = False # pagination_class = None # paginator = None # table_pagination = { # "per_page": 100000 # } template_name = "artikelen/alpine-voorraad-filter.html" -
How to migrate to the models from a previous commit?
I have a python Django project with several applications and multiple git branches for each features. It's a true hell to do the migration by hand because there are too many apps, and have to diff showmigrations to see what have changed... Is there a way to automate this, or at least a way to generate the migration I should restore the db to ? -
Django translate salutation
Assume we have person definitions, e.g.: { "first_name": "Peter", "last_name": "Peterson", "academic_title": "Dr", "salutation": "mr" } In english, the salutation should be: def person.display_name(): prefix = person.academic_title if person.academic_title else person.salutation return _(Hello "%(prefix)s {first_name} {last_name}") % {"prefix": prefix} # Dr. Peter Peterson #if the person has a title # Mr. Peter Peterson #if the user has no title In german this definition does not work, as it is always prefix = f"{person.salutation} {person.academic_title} Is there any way to mark it for translations except for def person.display_name(lang): if lang == 'en': prefix = person.academic_title if person.academic_title else person.salutation elif lang == 'de': prefix = f"{person.salutation} {person.academic_title} return _("Hello %(prefix)s {first_name} {last_name}") % {"prefix": prefix} Which has the disadvantage of having two translation strings -
Redirecting user to another page after submitting the form using get_absolute_url() method
I'm new to django and I'm following a tutorial trying to create a blog. I'm currently working on a page to add posts to the blog and I want the user to be automatically directed to the post page after submitting the form. I tried using get_absolute_url method but got this error: NoReverseMatch at /my_blog/add_post/ Reverse for 'post-detail' not found. 'post-detail' is not a valid view function or pattern name. I checked my code to see if I have done anything wrong but I couldn't notice. I appreciate any help in advance. models.py from django.db import models from django.contrib.auth.models import User from django.urls import reverse class Post(models.Model): STATUS = [ (0, 'Drafted'), (1, 'Published'), ] title = models.CharField(max_length=200, unique=True) slug = models.SlugField(max_length=200, unique=True) author = models.ForeignKey(User, on_delete=models.CASCADE) created_on = models.DateTimeField(auto_now_add=True) published_on = models.DateTimeField(auto_now=True) content = models.TextField() status = models.IntegerField(choices=STATUS, default=0) class Meta: ordering = ['-created_on'] def __str__(self): return self.title def get_absolute_url(self): return reverse('post-detail', args=(str(self.id))) urls.py from django.urls import path from .views import PostListView, PostDetailView, AddPostView, UpdatePostView app_name = 'my_blog' urlpatterns = [ path('', PostListView.as_view(), name='posts'), path('post/<int:pk>', PostDetailView.as_view(), name='post-detail'), path('add_post/', AddPostView.as_view(), name='add-post'), path('post/edit/<int:pk>', UpdatePostView.as_view(), name='update-post'), ] views.py from django.shortcuts import render from django.views.generic import ListView, DetailView, CreateView, UpdateView from .models import … -
Why onchange event doesnt work when select2 is used
here is the code i have written, <div class="col-12 row "> <div class="col-8"> <div class="form-group"> <label for="exampleInputUsername2">Quotation Closure<span class="danger" style="color: red;"> *</span></label> {{form.quotation_closure}} </div> </div> <div class="col-4 mt-3"> <div class="form-group"> <label for=""></label> <select name="" id="quotation_closure" class="form-control closure "> <option value="">Select Qtn Closure</option> {% for i in quotation_masters_closure %} <option value="{{i.id}}">{{i.name}}</option> {% endfor %} </select> </div> </div> my jquery code, $('#quotation_closure').on('change',function(e){ e.preventDefault() console.log("hai") master_id=$(this).val() console.log(master_id) $.ajaxSetup({ headers:{"X-CSRFToken":'{{csrf_token}}'} }) $.ajax({ type:'POST', url:"{% url 'select_qtn_closure' %}", data:{ 'master_id':master_id }, success: (data) => { CKEDITOR.instances["id_quotation_closure"].setData(data) } }) }) I have used select2 select boxes in my project.On the selection of option in select2, have to fill data in another textbox.But the onchange event of select2 doesnt work.if i use normal html select box it works perfectly Can anyone help me where i had gone wrong.. -
How can i get all information from <tr> in which django checkbox is active
I have such a table on my website that is filled with data: <table id="table" data-height="540" class="table table-dark"> <thead> <tr> <th data-checkbox="true"><input name="btSelectItem" value="selected_data"></th> <th data-field="id">ID</th> <th data-field="email">Email</th> <th data-field="source">Source</th> <th data-field="created_at">Created at</th> <th data-field="modified_at">Modified at</th> </tr> </thead> </table> <script> var $table = $('#table') $(function() { var data = {{data|safe}} $table.bootstrapTable({data: data}) }) </script> it is located in the tag of the form with the post method, with the help of this code fragment, I receive information about active checkboxes when the button is pressed: if request.method == 'POST': mails = request.POST.getlist('btSelectItem') I have a question, can I get all the information from this tag, or at least if the checkbox is active, get information from this field: <th data-field="id">ID</th> I would be very grateful for any advice) -
Celery doesn't get saved in the database
I'm using Celery on my Django app. I can't get my files to save in the database. When I run celery -A appname worker -l info --pool=solo in the terminal, then the files get saved. How do I get it to automatically save in the database? -
Problem with django mysql model auto increment pk (integerfield) number increasing too large
django mysql environment. I have a model that uses the default pk. By the way, pk is increasing too much. It increases by one regularly and then suddenly increases by several thousand. The code to create the model uses bulk_create, but nothing special. Neither is it created and then deleted. The actual model count is about 25,000, but the pk max has already exceeded 10 million. With only a few months of use, it seems to exceed the max of integerfield. How can I make it increment by 1? MySQL (none)@(none):edxapp> show table status like "klms_examstatus"\G; ***************************[ 1. row ]*************************** Name | klms_examstatus Engine | InnoDB Version | 10 Row_format | Dynamic Rows | 25784 Avg_row_length | 61 Data_length | 1589248 Max_data_length | 0 Index_length | 1228800 Data_free | 4194304 Auto_increment | 11705981 Create_time | 2022-08-03 19:34:56 Update_time | 2022-11-03 22:58:16 Check_time | <null> Collation | utf8_general_ci Checksum | <null> Create_options | Comment | 1 row in set Time: 0.019s MySQL (none)@(none):edxapp> select * from klms_examstatus order by id desc limit 1\G; ***************************[ 1. row ]*************************** id | 11705980 created | 2022-11-03 08:17:43.468974 modified | 2022-11-03 08:17:43.468974 attempt_count | 0 attempt_id | <null> subsectiongrade_id | 25956 1 row in set … -
Django url link is not working and I can't seem to figure out why
I have a notification that pops up whenever a new article is created and in that notification I have a link to that article. The problem is whenever you hit that link it brings up a 505 error. When I go to that article from the app, the url reads "website/app/article/77/" but when i inspect the link in the notification its giving me "website/app/article/77777777777777777777. So, that's a bit confusing. Here is the template that is used for the link in the notification {% extends "base.html" %} {% load bootstrap5 %} {% load crispy_forms_tags %} {% load static %} {% block content %} <div class="row"> <div class="col-sm-11"> <div class="card"> <div class="card-body"> <div class="row"> <div class="col mt-0"> <h5 class="card-title">{{ object.title }}</h5> </div> <div class="col-auto"> <div class="stat text-primary"> <i class="far fa-comment-alt"></i> </div> </div> </div> <h3 class="mt-1 mb-3">{{ object.message }}</h3> <hr> <h5>Details found <a href="{{ production_notification.url }}">here</a></h5> <hr> <small class="text-muted">{{ object.timestamp }}</small> </div> </div> </div> </div> {% endblock content %} Please let me know if any more info is needed to make this more clear as to what I am asking I've tried changing the link like {{% url 'app:article' id %}} but that didn't work. I've tried other things as well -
Django: Add property condition for another property
For a property, I can't manage to filter a Queryset with another property. I want that if "father" has "Star" in "True", "star_descendant" returns "father". I have this error: Exception Value: 'QuerySet' object has no attribute 'star'. How to fix it? My code : @property def star(self): if Evenements.objects.filter(eventtype=93).filter(xrefindividuproprio=self): return True return False @property def star_descendant(self): father = Individus.objects.filter(codeid=self.xrefpere_id) mother = Individus.objects.filter(codeid=self.xrefmere_id) if father.star == True: return father -
How to write Django query to grab all objects in descending order according to two number fields?
I'm using Django. i'm trying to write query according to the top rated products. i have product table. as you can see below. class Product(models.Model): user = models.ForeignKey(User, verbose_name=_("Owner"), on_delete=models.CASCADE) name = models.CharField(_("Name"), max_length=150,null=True) average_rating =models.DecimalField(_("average rating"), max_digits=10, decimal_places=2,null=True,blank=True) total_reviews = models.IntegerField(_("total reviews "),default=0,null=True,blank=True) is_remove = models.BooleanField(_("Remove"), default=False) create_time = models.DateTimeField(_("Create time"), default=timezone.now) Now i want to get all objects which have highest average rating and total count. I have tried many things below. but none of them worked. 1 - def get_all_top_rated_products(self): query = self.filter(is_remove=False).order_by("total_reviews","average_rating") print(query) return query 2 def get_all_top_rated_products(self): query = self.filter(is_remove=False).aggregate(Max('average_rating'),Max('total_reviews')) print(query) return query -
What causes 127.0.0.1:8000 to not work after working at the beginning?
Good day, I ran into a problem while trying to design a website with django, in the beginning when ran 127.0.0.1:8000 it would then I wrote several code it still worked, I then added bootstrap and it still worked then all of a sudden it returns the "this site can't be reached" message, I tried to change the port yet it still doesn't work, what could be the problem? I added bootstrap and I was expecting to see a functional website -
How to insert data to the same table id with Javascript Clone Code?
I am trying something with django and i need clone the form elements. I found some code, it works but it inserts the different table id. I wanna clone two form fields with js clone code. It clones and then post the fields, when i looked the database, i see two fields inserterd tho different ids. How can i fix this? When you look database image, same numbers but different id's. How can i insert data to same id with two form fields. This is create_normal.html Here is the database Here is my codes. models.py from django.db import models from django.contrib.auth.models import User # Create your models here. class PatientBilgi(models.Model): name = models.CharField(max_length=155) surname = models.CharField(max_length=155) def __str__(self): return self.name class PatientAliskanlik(models.Model): sigara = models.CharField(max_length=155) alkol = models.CharField(max_length=155) def __str__(self): return self.sigara class Patient(models.Model): name = models.CharField(max_length=155) pbilgi = models.ForeignKey(PatientBilgi, on_delete=models.CASCADE, blank=True, null=True) palis = models.ForeignKey(PatientAliskanlik, on_delete=models.CASCADE, blank=True, null=True) def __int__(self): return self.name forms.py from django import forms from .models import Patient, PatientBilgi, PatientAliskanlik from django.forms import (formset_factory, modelformset_factory) class PatientForm(forms.ModelForm): class Meta: model = Patient fields = ['name'] class PatientBilgiForm(forms.ModelForm): class Meta: model = PatientBilgi fields = ['name', 'surname'] class PatientAliskanlikForm(forms.ModelForm): class Meta: model = PatientAliskanlik fields = ['sigara', … -
Django join query using foreignkey
select locations.name,regions.region_name from locations inner join regions on locations.region_id = regions.id order by locations.name; How to do this query in Django ? I want to show countryname-regionname in select tag like chennai-india -
How to access other table field through foreign key in Django?
I'm stuck on something. How can I access the userroleid from my validatorid foreign key? I'm trying to do validation on serializer level. I tried something like data['validatorid__userroleid'] but it raises an error. Hope someone can help me on this! Here's my serializers class ValidatorPartSerializer(serializers.ModelSerializer): class Meta: model = partsTable fields = ['pid', 'partsid', 'validatorid', (...)] read_only_fields = ['pid', 'partsid',(...)] def validate(self, data): if data['validatorid'] != 2: #how can I access userroleid from here? raise serializers.ValidationError("Sorry! You entered a user with no validator permissions.") return data def update(self, instance, validated_data): instance.validatorid = validated_data.get('validatorid', instance.validatorid) instance.partsstatusid = validated_data.get('partsstatusid', instance.partsstatusid) instance.save() return instance Here's my model for reference: class partsTable(models.Model): pid = models.AutoField(primary_key=True) partsid = models.CharField(max_length=15, null=True) validatorid = models.ForeignKey(userTable, on_delete=models.CASCADE, null=True, blank=True) (...) class userTable(models.Model): userid = models.UUIDField(primary_key=True, default = uuid.uuid4, editable=False) username = models.CharField(max_length=50, null=False, unique=True) userroleid = models.ForeignKey(roleTable, on_delete=models.CASCADE) class roleTable(models.Model): roleid = models.IntegerField(null=False, primary_key=True) role = models.CharField(max_length=255, null=False) -
django.db.utils.IntegrityError: null value in column of relation violates not-null constraint
I'm trying to add several existing facility objects to a lead object whenever i create a new lead object using a json field serializer. When i print out the "assigned_facilities_id" it returns: "none" but it is in the json data I'm sending to the serializer. Does anyone know why this is happening? This is the error I'm getting when i try to create a lead: django.db.utils.IntegrityError: null value in column "assigned_facilities_id" of relation "users_leadfacilityassign" violates not-null constraint DETAIL: Failing row contains (78, null, null, 159). File "/app/users/api/views.py", line 53, in perform_create serializer.save(agent=self.request.user) File "/usr/local/lib/python3.9/site-packages/rest_framework/serializers.py", line 205, in save self.instance = self.create(validated_data) File "/app/users/api/serializers.py", line 252, in create instance.leadfacility.create(assigned_facilities_id=assigned_facilities.get('facility_id'), datetime=assigned_facilities.get('datetime')) class LeadUpdateSerializer(serializers.ModelSerializer): is_owner = serializers.SerializerMethodField() assigned_facilities = serializers.JSONField(required=False, allow_null=True, write_only=True) class Meta: model = Lead fields = ( "id", "first_name", "last_name", "is_owner", "assigned_facilities", ) read_only_fields = ("id", "is_owner") def get_is_owner(self, obj): user = self.context["request"].user return obj.agent == user def create(self, validated_data): assigned_facilities = validated_data.pop("assigned_facilities") instance = Lead.objects.create(**validated_data) for item in assigned_facilities: instance.leadfacility.create(assigned_facilities_id=assigned_facilities.get('facility_id'), datetime=assigned_facilities.get('datetime')) return instance json { "assigned_facilities": [{ "facility_id": "1", "datetime": "2018-12-19 09:26:03.478039" }, { "facility_id": "1", "datetime": "2019-12-19 08:26:03.478039" } ] } models.py class Facility(models.Model): name = models.CharField(max_length=150, null=True, blank=False) def __str__(self): return self.name class Lead(models.Model): first_name = models.CharField(max_length=40, … -
Custom Headers are missing in the request received in Django
I'm working on a ReactJS/Django project where I need to send few custom headers to Django from React. Issue: Custom headers are missing when the request comes into Django Custom Headers Added are - Token and User-Type React code below. export async function post(url, requestBody = {}, auth_req=true) { const token = window.sessionStorage.getItem("Token"); const user_type = window.sessionStorage.getItem("User-Type"); console.log("Header Data : ",token, user_type); try{ const requestOptions = { method: 'POST', headers: { "Content-Type": 'application/json', "Token" : auth_req ? token : null, "User-Type" : auth_req ? user_type : null }, body: requestBody ? JSON.stringify(requestBody) : "{}" }; console.log("POST URL is : ", url) console.log("Request is : ", requestOptions) const response = await fetch(url, requestOptions); let json_response = await response.json() console.log("Response is : ",json_response) return json_response }catch(e){ console.log("Service Failed: ", e) return { status: false, messages: ["Service Failed. Please try after sometime."] } } } Console Output: - As per the console logs, all the information are sent out correctly But when it comes to Django, its all empty. In Django, I verify the custom header info in my middleware and below is the code def __call__(self, request): headers = request.headers token = headers.get('Token') user_type = headers.get('User-Type') print(headers) print("** Token : {} | … -
Django migration column does not exist ProgrammingError error when running tests
I run into an error when testing a django application with pytest, more specifically when running tests if I have done a migration that removes a field used in an earlier migration. Doing so outside of tests gives no error. To reproduce: models.py from django.db import models class TestModel(models.Model): # We started with this field, but now longer need it # original_text = models.CharField(max_length=255) # We added this field and then moved over to it new_text = models.CharField(max_length=511) migrations/0001_initial.py from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='TestModel', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('original_text', models.CharField(max_length=255)), ], ), ] migrations/0002_testmodel_new_text.py from django.db import migrations, models def move_text_to_other_field_and_append_new(apps, schema_editor): TestModel = apps.get_model("sample", "TestModel") for test_model in TestModel.objects.all(): test_model.new_text = test_model.original_text + " new" test_model.save() class Migration(migrations.Migration): dependencies = [ ('sample', '0001_initial'), ] operations = [ migrations.AddField( model_name='testmodel', name='new_text', field=models.CharField(default='', max_length=511), preserve_default=False, ), migrations.RunPython(move_text_to_other_field_and_append_new, migrations.RunPython.noop) ] migrations/0003_remove_testmodel_original_text.py from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('sample', '0002_testmodel_new_text'), ] operations = [ migrations.RemoveField( model_name='testmodel', name='original_text', ), ] tests.py from django.test import TestCase class TestModelTestCase(TestCase): def test_example(self): self.assertEqual(1, 1) This is a minimal setup to reproduce the error. Now when running pipenv run … -
The comprehensive of Python and its future? [closed]
Python is a programming language that can be used in many areas such as AI, creating a Web Server, and writing tools that run in many industries (DevOps, Hacking, etc.). So is Python comprehensive and what does its future look like? I have used Python to create products for problems in different fields (AI, Web Server, script tool). So is it possible to use Python for everything? -
Django app dissapears from Django Admin site when I add apps.py file
I'm working with Django 3.2 and trying to configure correctly the AppsConfig subclass of apps.py in order to avoid duplicate apps names when initzialing the project. The context is the following. I have in my INSTALLED_APPS two apps whose names are equal although their paths not: INSTALLED_APPS = [ ... 'first_app.myapp', 'second_app.myapp' ] To avoid the error shown below (and according to the documentation), I need to create an apps.py file subclassing AppConfig in at least one of the apps called myapp. I've decided to create that file in the second one, second_app.myapp. django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: myapp The app.py in second_app.myapp module looks like as follows: from django.apps import AppConfig class MySecondAppConfig(AppConfig): name = "second_app.myapp" label = "my_second_app" And in the __init__.py I've added: default_app_config = 'second_app.myapp.apps.MySecondAppConfig' My admin.py looks like: from django.contrib import admin from .models import MyModel class MySecondAppAdminModel(admin.ModelAdmin): list_display = ('attr_1', 'attr_2') admin.site.register(MyModel, MySecondAppAdminModel) When I start the project all works OK and I can use that model information, views called from second_app.myapp also work OK. The problem comes when I access to the admin site (http://localhost:8000/admin), where only appears the first_app.myapp admin form instead of both. Can you help me? Thanks in advance. -
How to include information from a request in linkify in Tables2 in Django - using to populate a many-to-many relationship
I have a many to many relationship and am setting up a way to add a new relationship from a detail view of model1. I have set it up so I have a url mapped to create the relationship given pk(model1)/url/pk(model2). This is just a function that adds the many to many relationship, and redirects back to the detailview of model1. I have this working in a function based aproach, but would like to be able to display the list of available ModelB records using Tables2, but am strugling to figure out how to add the pk(model1) to linkify in the table as the table is based on model2 and this is not part of the definition of model2. Maybe there is a whole different way of aproaching this problem which is a better aproach? (lots of documentation and tutorials about setting up and dealing with a many-to-many relationship, but couldn't find any examples of doing this part other than in the shell) Here is what I have: models.py class Dmsesite(models.Model): ... class Job(models.Model): dmsesite = models.ManyToManyField(Dmsesite) ... urls.py path('<int:pk>/add_job/', views.DmsesiteAddJob, name='dmsesite_add_job'), path('<int:dmsesite_pk>/add_job_to_site/<int:job_pk>', views.DmsesiteAddJobToSite, name='dmsesite_add_job_to_site'), views.py class DmseSiteAddJobListView(PermissionRequiredMixin, SingleTableMixin, FilterView): permission_required = 'dmsesites.view_dmsesite' redirect_field_name = 'dashboard' table_class = DmsesiteJobTable filterset_class … -
FATAL: password authentication failed for user 'xxx' error when migrating to a postgresql db in RDS
I am trying to migrate to a PostgreSQL db in RDS from Django. The db was set up successfully but when I run python3 manage.py migrate I keep getting the error 'FATAL: password authentication failed for user'. The user name that it mentions is not the master username from RDS which is the same as my USER in settings. I have a .env file with the USER, ENGINE, PASSWORD etc that is being read correctly apart from the fact that it is not referencing the USER. It is referencing the username I use to log onto the computer which I also used when I set up a superuser in the venv. I have tried logging out from superuser which did nothing. I also tried deactivating the venv which seemed to solve the authentication issue though obviously none of the modules within the venv uploaded so I got errors from that. I tried changing the password in RDS but it is still trying to connect using the wrong user. I also tried making a new venv but still got the same error. The NAME in settings is set to postgres. Has anyone else had this issue? Any advice much appreciated.