Disable Notifications while Screen Sharing .

2021-03-22 Thread Kumar Gaurav
Hi Everyone , This is not a Django Question, Just need your inputs. I want to Disable all the pop-up notifications (like slack messages, chrome etc.) from the windows action center only when I am sharing my screen during online meetings. The application can be anything like Google meet , cisco

Re: Connect Django with SQL Server 2012

2021-03-22 Thread Kasper Laudrup
On 22/03/2021 15.57, Maurizio Faccin wrote: > I tried to use the parameters above in a python script and works correctly. > > What I can do to resolve this issue? > I don't think I can solve the issue, but it might help if you post the relevant part of the Python script? Then someone might be a

Connect Django with SQL Server 2012

2021-03-22 Thread Maurizio Faccin
Hello, I have a problem tryng to connect Django with a SQL Server 2012 runnig on my pc. I installed pyodb package and this is my connection parameters in settings.py DATABASES = {     'default': {     'ENGINE': "sql_server.pyodbc",     'NAME': "CD",     'USER': "sa",     'PASSW

Re: Create email template with the click of a button

2021-03-22 Thread Kristen
Hello, Correct. I want to the user to click a button and have a form appear where the user can compose an email. Gmail uses javascript to render their form on top of the inbox because they > don't want you to have to leave the inbox page. You probably don't have > that requirement. > > Let me kno

Re: Create email template with the click of a button

2021-03-22 Thread jdsleppy
It sounds like you want the user to click a button and have a form appear where the user can compose an email. The simplest implementation might be to make that button a link () to a page like /email/compose that renders the form. No javascript needed there. Gmail uses javascript to render thei

Edit record is not saving changes in frontend

2021-03-22 Thread Wale Olajumoke
I am creating a CRUD application. The create, read and delete function are working but edit record is showing the instance in the form* but it is not saving changes.* *Here is my code.* *===* *views.py* def edit(request, id): student = Student.objects.get(id=id) form = StudentForm

Re: Create email template with the click of a button

2021-03-22 Thread Kristen
Hello, Correct me if I'm wrong. I understand that creating the template is possible with django but I have one question. Is it possible to create that email template with the click of a button? For example, in Gmail there's a button "compose". When you click that button it creates an email templa