Re: Improving your Stack Overflow score

2023-03-22 Thread ALBERT ASHABA AHEEBWA
Hahaha 藍, You are not alone my friend. There's a whole YouTube video about it here: https://youtu.be/N7v0yvdkIHg Take a look and rest assured you are not alone. Best Regards, Albert Ashaba Aheebwa +256 781 435857 On Thu, 23 Mar 2023, 03:13 Michael Starr, wrote: > I don't get that website.

Improving your Stack Overflow score

2023-03-22 Thread Michael Starr
I don't get that website. There are assholes in the thousands, and good-intentioned people like me at <10. What is the deal? I don't even know what that site is for sometimes. The questions with good ratings are usually stupid and don't explain things correctly, with bad answers. It's a

Re: Error: name 'include' is not defined

2023-03-22 Thread Larry Stevens
Perfect, problem solved. Thank you so much Jeman, Harouna, and Robinson. Greatly appreciated. On Wednesday, March 22, 2023 at 11:16:58 AM UTC-4 Robinson wrote: > import path, include > > > On Wed, Mar 22, 2023 at 4:49 PM Harouna Diallo wrote: > >> You must Import include : from django.urls

Re: Error: name 'include' is not defined

2023-03-22 Thread Robinson
import path, include On Wed, Mar 22, 2023 at 4:49 PM Harouna Diallo wrote: > You must Import include : from django.urls import path, include > > On Wed, Mar 22, 2023 at 12:53 PM Larry Stevens > wrote: > >> Hello, >> >> I'm brand new to Django taking an online course in Python. >> I created a

Re: Help on Django + Plotly integration

2023-03-22 Thread 'Kasper Laudrup' via Django users
On 22/03/2023 15.29, Praveen Kumar wrote: Hi Team, I need help in implementing Plotly with Django for interactive dashboards. Please suggest. Try following this: https://googlethatforyou.com?q=plotly%20django Kind regards, Kasper Laudrup -- You received this message because you are

Help on Django + Plotly integration

2023-03-22 Thread Praveen Kumar
Hi Team, I need help in implementing Plotly with Django for interactive dashboards. Please suggest. Thanks & Regards, Praveen -- 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,

Clickable link in django admin Panel

2023-03-22 Thread Gurami Tchumburidze
I have problem to display clickable link in django admin panel next to 'icon' field or add help_text witch will be clickable and if i click on it, it must open this 'https://fonts.google.com/icons?icon.set=Material+Icons' website in new window of browther . [image: .PNG] link example :

Re: Error: name 'include' is not defined

2023-03-22 Thread Harouna Diallo
You must Import include : from django.urls import path, include On Wed, Mar 22, 2023 at 12:53 PM Larry Stevens wrote: > Hello, > > I'm brand new to Django taking an online course in Python. > I created a project named 'django_test' and I'm in the process of creating > a very simple app named

Re: Error: name 'include' is not defined

2023-03-22 Thread Jeman Kumar
hi, replace the line "from django.urls import path" to "from django.urls import path, include" On Wed, 22 Mar, 2023, 6:22 pm Larry Stevens, wrote: > Hello, > > I'm brand new to Django taking an online course in Python. > I created a project named 'django_test' and I'm in the process of creating

Re: Django error while running

2023-03-22 Thread James Kalu
I think it ushould be 'rest_framework' in settings.py under installed apps. On Wednesday, March 22, 2023 at 4:50:30 AM UTC+3 David Nugent wrote: > Any traceback with this at the end: > > _bootstrap._gcd_import(name[level..], package, level) > > Is almost always is due to a problem with your

Error: name 'include' is not defined

2023-03-22 Thread Larry Stevens
Hello, I'm brand new to Django taking an online course in Python. I created a project named 'django_test' and I'm in the process of creating a very simple app named 'Hello_World'. I'm trying to modify the urls.py file in my 'django_test' project for the app 'hello_world'. My code in urls.py

Re: Django Channels 2 Group_send to channel layer causes runtime error: "got Future attached to a different loop"

2023-03-22 Thread raed
how did you test it ? did you use a specific cmd to excute ? Le vendredi 16 février 2018 à 22:08:55 UTC+1, Luke Hebert a écrit : > Trying to call the "alert_receive" consumer method > > import json > from channels.consumer import SyncConsumer > from channels.exceptions import StopConsumer > from

Re: Django error while running

2023-03-22 Thread Chandresh . T
I just added apps and templates, static file locations. On Wed, 22 Mar 2023 at 17:36, Ahmad Abdulnasir Shuaib < ahmadabdulnas...@gmail.com> wrote: > It looks like you mistakenly alter your settings, check your > INSTALLED_APPS in settings.py > > ModuleNotFoundError: No module named

Re: Django error while running

2023-03-22 Thread Ahmad Abdulnasir Shuaib
It looks like you mistakenly alter your settings, check your INSTALLED_APPS in settings.py ModuleNotFoundError: No module named 'rest_frameworkdjango' There should be a comma between rest_framework and django On Wed, Mar 22, 2023, 12:18 PM Chandresh . T wrote: > Hello all! This is the setting

Re: Django error while running

2023-03-22 Thread Chandresh . T
Hello all! This is the setting file of the project and I actually installed requirement.txt already. In that it said "already installed rest_framework" but while running it shows an error that no module called rest_framework is installed. On Wed, 22 Mar 2023 at 07:20, David Nugent wrote: > Any