Re: solved

2022-10-29 Thread ssawyer
The joy or working in multi developer / team environments :)... Although for me, it's usually my challenging myself by leaving boobie traps in my code. On 10/29/22 9:18 AM, Robert Leach wrote: I don't know how to find the conversation I just started, but I wanted to add a note that I figured

Power BI Dashboard Embed Code Using Django.

2022-10-29 Thread Abnet birknhe
Hi, How to embed Report from Power BI using code in to Django? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To

Add browser notifications for website

2022-10-29 Thread Lakshyaraj Dash
I've a blogging website and I want that those who have taken the subscription of my website by clicking on allow notifications should get a notification whenever a new blog is posted through the browser. -- You received this message because you are subscribed to the Google Groups "Django users"

Re: PLEASE HELP ME KNOW HOW TO ARRANGE INSTALLED APPS.

2022-10-29 Thread Ammar Mohammed
Hello Dear You should name your apps without the app word in the end Example : INSTALLED_APPS = [ "apps.store'', " apps.core", ] This will definitely work Regards On Wed, 19 Oct 2022, 7:30 AM regan opere, wrote: > Many, thanks for the reply. However, I have two apps in the directory >

Re: Power BI Dashboard Embed Code Using Django.

2022-10-29 Thread Abnet birknhe
I am also facing problem too On Wednesday, 10 March 2021 at 05:54:27 UTC-8 geethanj...@gmail.com wrote: > Hi, > > How to embed Report/dashboard in Power BI to a Web portal using Django? > > Thanks, > Geethanjali. > -- You received this message because you are subscribed to the Google Groups

solved

2022-10-29 Thread Robert Leach
I don't know how to find the conversation I just started, but I wanted to add a note that I figured out my problem. There were calls to `full_clean` another developer had introduced that was changing the database and causing the cross-database relations. -- You received this message because

How to override Model.__init__ without breaking `using(db)`?

2022-10-29 Thread Robert Leach
Hi, I have a Model superclass called `MaintainedModel` that other models inherit from. It itself inherits from django.db.models.Model and overrides its __init__ method in order to implement some controls on fields using decorators in the derived models. It all works very well in the realm of

Re: Error: pg_config executable not found. (psycopg2 for postgres in docker not successfully installed)

2022-10-29 Thread 'Kasper Laudrup' via Django users
On 28/10/2022 12.35, Adeyemi Deji wrote: I have tried this command in Dockerfile: RUN pip install --user psycopg2==2.9.5 I got the command on StackOverflow but still didn't resolve the issue. Seems like you need the postgresql development package or similar to build psycopg2 from source.