Re: Can someone help me??

2020-07-01 Thread Hella Nick
Dear Mir oba stephen: I deleted "volume" function,But The result is the same. Hella Nick 于2020年7月2日周四 上午10:51写道: > Dear Sencer: > > >> index > > > > >- > > There is no problem with writing this wayI don't understand why. > > > Thank You > > Sencer Hamarat 于2020年7月1日周三

Re: Can someone help me??

2020-07-01 Thread Hella Nick
Dear Sencer: > index - There is no problem with writing this wayI don't understand why. Thank You Sencer Hamarat 于2020年7月1日周三 下午5:13写道: > File "D:\pythonwork\blog\personBlog\blog\views\index.py", line 25, in get > return render(request,'index.html',locals()) > >

Re: Primary keys using sequences

2020-07-01 Thread Clive Bruton
On 2 Jul 2020, at 00:06, Stats Student wrote: Hi, I am using a Postgres database and have been populating the primary key from a sequence. Is there any way to define this behavior through Django's ORM? Thanks I think you are basically asking how to create a custom key. This was

Primary keys using sequences

2020-07-01 Thread Stats Student
Hi, I am using a Postgres database and have been populating the primary key from a sequence. Is there any way to define this behavior through Django's ORM? Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: How to add domain from GoDaddy to Heroku

2020-07-01 Thread Micah Beckman
I finally got it sorted out. Buried deep in the blogs and FAQs they say that GoDaddy is going to be a problem, yet I have seen tutorials that use GoDaddy. Anyway, I got a domain on DNSimple and everything worked out immediately. They have a one-click connection to Heroku. Thank you for

Re: Need suggestions-Reg

2020-07-01 Thread Karan Sahu
Hi Pavan, I can suggest if you want then I can do the same also. Best, Karan On Wednesday, July 1, 2020, Sai Pavan Kumar wrote: > Hi , > I need to integrate the video conferencing in my Django > application.which is the best open source video conferencing tool available > .please suggest

Re: Need suggestions-Reg

2020-07-01 Thread o1bigtenor
On Wed, Jul 1, 2020 at 7:56 AM shedd tutt wrote: > > Zoom > > On Wed, 1 Jul 2020, 05:38 Sai Pavan Kumar wrote: >> >> Hi , >> I need to integrate the video conferencing in my Django >> application.which is the best open source video conferencing tool available >> .please suggest me. You

Admin documentation incorrect hyperlinks

2020-07-01 Thread Martyn Pearson
I have an issue with Django, so wanted to raise it here before going to the extent of raising a bug. For a simple scenario, I have a site "Survey", an app "Report" and models "Question" and "Answer". Note that the case is important; I've capitalised the first letter of each. Admin

Re: How to display a line graph in Django?

2020-07-01 Thread shedd tutt
Use chartjs On Wed, 1 Jul 2020, 07:45 ratnadeep ray wrote: > Hi all, > > I have wrote a python program to display the line graph as follows: > > import matplotlib.pyplot as plt > > x = [1,2,3] > y = [2,4,1] > > > plt.plot(x, y) > > > plt.xlabel('x - axis') > plt.ylabel('y - axis') > > >

Re: Need suggestions-Reg

2020-07-01 Thread shedd tutt
Zoom On Wed, 1 Jul 2020, 05:38 Sai Pavan Kumar wrote: > Hi , > I need to integrate the video conferencing in my Django > application.which is the best open source video conferencing tool available > .please suggest me. > > Thanks and Regards > Pavan T > > -- > You received this message

Re: How to display a line graph in Django?

2020-07-01 Thread Yamen Gamal Eldin
There's plotting library in Django. But if I were u, I would send the data needs plotting to the template, and plot it using a JavaScript library like chart js for small plots or d3 J's for more professional ones. Le mer. 1 juil. 2020 à 06:44, ratnadeep ray a écrit : > Hi all, > > I have wrote

Materializecss issue with CKeditor dialog

2020-07-01 Thread Sherif Adigun
If using materializecss for the application and image upload widget in the ckeditor, materializecss affects the dialog inputs making it impossible to use radio buttons and checkboxes. Do you have a suggestions on how to solve this? I'm thinking of not loading the materialize css for the dialog

Re: Can someone help me??

2020-07-01 Thread Sencer Hamarat
File "D:\pythonwork\blog\personBlog\blog\views\index.py", line 25, in get return render(request,'index.html',locals()) According to this line in that error seems to have occurred while rendering. There is at least one "+" operation in "index.html" or "local()" method call. You have to check

Re: Can someone help me??

2020-07-01 Thread oba stephen
The Error is straight forward, you are using an operand "+" for two two data types that it can't be used on. This might be from your "volume" function. On Wed, Jul 1, 2020 at 9:30 AM Hella Nick wrote: > Can someone help me?? > > > My project catalogue: > > > My setttings: > > TEMPLATES = [ >

Can someone help me??

2020-07-01 Thread Hella Nick
Can someone help me?? My project catalogue: My setttings: TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'blog/templates/')] , 'APP_DIRS': True, 'OPTIONS': {