Re: I need help with my first Django project - its structure etc.

2020-09-10 Thread Ogunsanya Opeyemi
1. You have to start from there 2. Yes you need two apps companies and employees 3. Yes your idea is correct 4. You can do that. Email me if you still need help On Thursday, September 10, 2020, Mislav Jurić wrote: > Hey guys, > > I went through the Django tutorial

I need help with my first Django project - its structure etc.

2020-09-10 Thread Mislav Jurić
Hey guys, I went through the Django tutorial about 2 weeks ago and I decided to create a website using Django. I have a couple of questions on the structure of the Django project, but before I voice them, I wanted to describe the features t

Re: Help me with the view please

2020-09-08 Thread coolguy
in students %} {{ student.name }}: {{ student.get_remaining_fee }} {% endfor %} On Tuesday, September 8, 2020 at 1:35:56 PM UTC-4 dex9...@gmail.com wrote: > Thank you for your help @coolguy..but my real problem lies in writing the > code for “fee_remaining

Re: Help me with the view please

2020-09-08 Thread coolguy
... {{ student.get_remaining_fee }} On Tuesday, September 8, 2020 at 1:35:56 PM UTC-4 dex9...@gmail.com wrote: > Thank you for your help @coolguy..but my real problem lies in writing the > code for “fee_remaining”, can you help me with that also..thanks > > > > Sent from Mail <https://go.microsoft.com/

RE: Help me with the view please

2020-09-08 Thread fadhil alex
Thank you for your help @coolguy..but my real problem lies in writing the code for “fee_remaining”, can you help me with that also..thanks Sent from Mail for Windows 10 From: coolguySent: Tuesday, September 8, 2020 7:45 PMTo: Django usersSubject: Re: Help me with the view please In your return

Re: Help me with the view please

2020-09-08 Thread coolguy
In your return line of code, you are referring to context variable but I don't see you assigned any value to this context variable in your code. Or if you want to send three variables i.e. "fees", "total_fees" and "fee_remaining"... you need to send them separately like return render(request, 'w

Help me with the view please

2020-09-08 Thread Dexterr Jay
My Models class Student(models.Model): name = models.CharField(max_length=200, null=True, blank=True) classroom = models.ForeignKey(‘Classroom’, on_delete=models.DO_NOTHING,blank=True, null=True) class Classroom(models.Model): name = models.CharField(max_length=40,blank=True, null=True) class Fe

Re: help

2020-09-07 Thread Anil pawar
Can you please share sample any sample code to understand with Django Packages do you want to achieve it. Maybe this one helps you if you want to access the 3ed party API with the token. *headers = {'Authorization': 'Token 9054f7aa9305e012b3c2300408c3dfdf390fcddf'} * *requests.get("http...", p

help

2020-09-05 Thread mbella...@gmail.com
please need to know how to get the response from retreiving a requests.get("http...", parms=payload) where payload is grant_type, client_id, client_secret need to know how to get the access token from an api -- You received this message because you are subscribed to the Google Groups "Django

Re: Help. if i runserver I get this error

2020-09-05 Thread hans alexander
You need to set your index path in urls.py like this: path(' ', , ) On Fri, Sep 4, 2020 at 11:49 PM Boi Deekay wrote: > Page not found (404)Request Method: > GETRequest URL: > http://127.0.0.1:8000/ > > Using the URLconf defined in myFirstPy.urls, Django tried these URL > patterns, in this order

Help. if i runserver I get this error

2020-09-04 Thread Boi Deekay
Page not found (404)Request Method: GETRequest URL: http://127.0.0.1:8000/ Using the URLconf defined in myFirstPy.urls, Django tried these URL patterns, in this order: 1. text/ 2. admin/ The empty path didn't match any of these. You're seeing this error because you have DEBUG = True in y

Re: can anyone help me

2020-08-31 Thread sakshi jain
16yazha...@gmail.com> wrote: >>> >>>> I can upload images from django admin panel but cannot to do same thing >>>> with django form , it saves any text but did not save images only, anyone >>>> help me please >>>> github <https://gith

Re: can anyone help me

2020-08-31 Thread sherry wilson
inside_your_media_folder" >> >> On Sat, Aug 29, 2020, 19:48 allaberdi...@gmail.com < >> allaberdi16yazha...@gmail.com> wrote: >> >>> I can upload images from django admin panel but cannot to do same thing >>> with django form , it saves any te

Re: can anyone help me

2020-08-31 Thread Kelvin Sajere
com> wrote: > I can upload images from django admin panel but cannot to do same thing > with django form , it saves any text but did not save images only, anyone > help me please > github <https://github.com/alyyazkhanov/my-firs-blog.git> > this is my code: > > mode

Re: plz help i found this kinda problem when i run

2020-08-31 Thread sapna Choudhary
You need to create a directory named templates in your current directory i.e., any app or project directory under that templates directory create html file and include that html file with render method. On Thu 27 Aug, 2020, 10:04 PM Ogunsanya Opeyemi, < ogunsanyaopeye...@gmail.com> wrote: > This

Re: Need help in Linode server setup.

2020-08-30 Thread RANGA BHARATH JINKA
Hi, Please check this. https://stackoverflow.com/questions/10873295/error-message-forbidden-you-dont-have-permission-to-access-on-this-server On Mon, Aug 31, 2020 at 12:15 PM Vikas Sri wrote: > We have pushed the codes on a Linode server. But the project is not > getting Live. > Sharing scr

Re: can anyone help me

2020-08-30 Thread Deepraj Devikar
do same thing >> with django form , it saves any text but did not save images only, anyone >> help me please >> github <https://github.com/alyyazkhanov/my-firs-blog.git> >> this is my code: >> >> models.py: >> class Posts(models.Model): >> &

Re: help on my quizz app

2020-08-30 Thread Desh Deepak
Query with id for next and preview object On Sun, 30 Aug 2020, 2:45 pm ola neat, wrote: > hey guys, I need help, I'm working a a simple quizz app, but now i nid > help on how to make the users navigate from 1 question to the other( using > next button after answering the question)

Re: help on my quizz app

2020-08-30 Thread Kunal Solanke
Check out pagination under Listview in django ,or handle dom with js. On Sun, Aug 30, 2020, 14:45 ola neat wrote: > hey guys, I need help, I'm working a a simple quizz app, but now i nid > help on how to make the users navigate from 1 question to the other( using > next button a

help on my quizz app

2020-08-30 Thread ola neat
hey guys, I need help, I'm working a a simple quizz app, but now i nid help on how to make the users navigate from 1 question to the other( using next button after answering the question) and including a time to ensure the user can't continue when the time is up, any help will be a

Re: can anyone help me

2020-08-29 Thread MUGOYA DIHFAHSIH
saves any text but did not save images only, anyone > help me please > github <https://github.com/alyyazkhanov/my-firs-blog.git> > this is my code: > > models.py: > class Posts(models.Model): > > Ahal = 'Ahal' > Balkan = 'Balkan' > Dasoguz = &#x

Re: guys help me please, I cannot upload images from django form,

2020-08-29 Thread Chelsea Fan
6, allaberdi...@gmail.com ( > allaberdi16yazha...@gmail.com) escribió: > >> I can upload images from django admin panel but cannot to do same thing >> with django form , it saves any text but did not save images only, anyone >> help me please >> this is my code: &g

Re: guys help me please, I cannot upload images from django form,

2020-08-29 Thread Jonathan Villavicencio
ut did not save images only, anyone > help me please > this is my code: > > models.py: > class Posts(models.Model): > > Ahal = 'Ahal' > Balkan = 'Balkan' > Dasoguz = 'Dasoguz' > Lebap = 'Lebap' > Mary = 'Mary'

can anyone help me

2020-08-29 Thread allaberdi...@gmail.com
I can upload images from django admin panel but cannot to do same thing with django form , it saves any text but did not save images only, anyone help me please github <https://github.com/alyyazkhanov/my-firs-blog.git> this is my code: models.py: class Posts(models.Model): Ahal =

guys help me please, I cannot upload images from django form,

2020-08-29 Thread allaberdi...@gmail.com
I can upload images from django admin panel but cannot to do same thing with django form , it saves any text but did not save images only, anyone help me please this is my code: models.py: class Posts(models.Model): Ahal = 'Ahal' Balkan = 'Balkan' Dasoguz = 'Daso

Re: plz help i found this kinda problem when i run

2020-08-28 Thread RANGA BHARATH JINKA
Hi, Create a templates folder in your base directory where manage.py exists. Change the templates folder path in settings.py as 'DIRS': [os.path.join(BASE_DIR,'templates')] All the best On Thu, Aug 27, 2020 at 10:04 PM Ogunsanya Opeyemi < ogunsanyaopeye...@gmail.com> wrote: > This means th

Re: plz help i found this kinda problem when i run

2020-08-27 Thread Ogunsanya Opeyemi
This means that your current_datetime.html template does not exists in any of those directory in the defined directory under templates in your setting.py file. On Thu, Aug 27, 2020 at 4:01 PM ALAKO ABIYO wrote: > > Environment: > > > Request Method: GET > Request URL: http://127.0.0.1:8000/tim

plz help i found this kinda problem when i run

2020-08-27 Thread ALAKO ABIYO
Environment: Request Method: GET Request URL: http://127.0.0.1:8000/time/ Django Version: 1.8 Python Version: 2.7.17 Installed Applications: ('django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.

Re: hello every one. i have a probleme with 'pip install mysqlclient' please i need a help

2020-08-24 Thread RANGA BHARATH JINKA
Hi, Please check the location of the .whl file. Copy .whl file into your project root folder and install. All the best. On Mon, Aug 24, 2020 at 1:04 PM Makan Leboss wrote: > *my error code is:* " (myvenv) c:\djangoboys\dagakane>pip install > mysqlclient-1.4.6-cp38-cp38-win32.whl > WARNING:

hello every one. i have a probleme with 'pip install mysqlclient' please i need a help

2020-08-24 Thread Makan Leboss
*my error code is:* " (myvenv) c:\djangoboys\dagakane>pip install mysqlclient-1.4.6-cp38-cp38-win32.whl WARNING: Requirement 'mysqlclient-1.4.6-cp38-cp38-win32.whl' looks like a filename, but the file does not exist Processing .\mysqlclient-1.4.6-cp38-cp38-win32.whl ERROR: Could not install packa

Re: Who can help me?

2020-08-23 Thread Hella thor
Thank you,I see what's going on here Siddhartha 于2020年8月24日周一 上午1:02写道: > Its the class > > that > django uses to auto reload the development server whenever you make code > changes . > > Specifically, determined wit

Re: Who can help me?

2020-08-23 Thread Siddhartha
Its the class that django uses to auto reload the development server whenever you make code changes . Specifically, determined within the *get_reloader*

Re: Who can help me?

2020-08-23 Thread Jaap van Wingerde
This is the first result with Google: https://stackoverflow.com/questions/55831728/what-is-statreloader-while-running-django Hella thor schreef op August 21, 2020 9:23:22 AM UTC: >Hey guys: > >My python version is 3.7.1 >Django version is 3.1 > >When I started the project > >[image: 9.png] > >-

Re: Who can help me?

2020-08-22 Thread Kovy Jacob
whats the prob On Fri, Aug 21, 2020 at 9:30 AM Hella thor wrote: > Hey guys: > > My python version is 3.7.1 > Django version is 3.1 > > When I started the project > > [image: 9.png] > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To un

RE: help required with a concept.

2020-08-21 Thread Mike Dewhirst
l from my phone) Original message From: Asish Ojha Date: 22/8/20 09:49 (GMT+10:00) To: Django users Subject: help required with a concept. i am designing a project on online registration of students for an educational institution. Now that institution is having several sch

Re: help required with a concept.

2020-08-21 Thread Ogunsanya Opeyemi
Hi you need to carefully create an algorithm because this implementation is a big one. Send your whatsapp number to me if you still dont get what i meant. If i could help you in it. On Saturday, August 22, 2020, Asish Ojha wrote: > i am designing a project on online registration of students

Re: Who can help me?

2020-08-21 Thread Hella thor
- Why did he report an error?It's 'Watching for file changes with StatReloader' Ahmed Yasin 于2020年8月21日周五 下午9:38写道: > Can you tell me what are you trying to do? > > On Fri, Aug 21, 2020, 6:29 PM Hella thor > wrote: > >> Hey guys: >> >> My python version is 3.7.1 >> Django version is

help required with a concept.

2020-08-21 Thread Asish Ojha
i am designing a project on online registration of students for an educational institution. Now that institution is having several schools registered under it. The School has a school id code and school name. Now i want a generalised login system for the school where they have their school id c

Re: Who can help me?

2020-08-21 Thread Ahmed Yasin
Can you tell me what are you trying to do? On Fri, Aug 21, 2020, 6:29 PM Hella thor wrote: > Hey guys: > > My python version is 3.7.1 > Django version is 3.1 > > When I started the project > > [image: 9.png] > > -- > You received this message because you are subscribed to the Google Groups > "Dj

Who can help me?

2020-08-21 Thread Hella thor
Hey guys: My python version is 3.7.1 Django version is 3.1 When I started the project [image: 9.png] -- 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-u

help me i am not able to show button in my cart

2020-08-20 Thread Chander shekhar
https://github.com/bestcsp/problem/issues/1 -- 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 view this discussion o

Re: Help to Create Dynamic Form

2020-08-19 Thread ihsan demir
forms and clicking on create Bill. At >the view.py I am receiving only one split form rather than multiple ?? I > am >thinking something is wrong because of might be above two approaches are >not correct !!! Need help over this. > > [image: Screenshot 2020-03-19 a

Need Help Fixing an Issue in my E-commerce Project

2020-08-05 Thread Ahmed Khairy
{{ items.title|capfirst }} {% endfor %} {% endif %} {% endif %} Here is the template which is not working Order Summary: {% for order_item in object.items.all %} {{ forloop.counter }} {{ order_item.item.title }} {% if order_item.item.discount_price %} ${

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-04 Thread Phan Nguyen
Tuesday, August 4, 2020 at 2:21:44 PM UTC+7, Jatin Agrawal wrote: > > It seems like your directoy structure is not proper after you moved some > files/folders. So, if you can send the screenshot of your directory > structure, it might be helpful for others to help you. > > O

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-04 Thread Phan Nguyen
*To add up, There are also 2 manage.py and 2 setting.py, some of the files may be repetitive because I accidentally copied code from one to another so it was duplicated.* On Tuesday, August 4, 2020 at 9:22:36 PM UTC+7, Phan Nguyen wrote: > > > -- You received this message because you are subsc

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-04 Thread Jatin Agrawal
It seems like your directoy structure is not proper after you moved some files/folders. So, if you can send the screenshot of your directory structure, it might be helpful for others to help you. On Tuesday, August 4, 2020 at 10:12:32 AM UTC+5:30, Phan Nguyen wrote: > > *So I was be a

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-03 Thread Isaac
path cannot be run. I am >> using Mac OS. (error picture attached) please tell me if you need more >> screenshot to clarify. I appreciate any help. Thank you so much!* >> >> [image: Screen Shot 2020-08-04 at 11.36.30.png] >> >> -- You received this message because

Re: RUNSERVER SERIOUS PROBLEM! Please help me pls

2020-08-03 Thread Phan Nguyen
write all the code of > html and python for this webserver. And it turns out to be not working > anymore.Now, all the admin site and other urls path cannot be run. I am > using Mac OS. (error picture attached) please tell me if you need more > screenshot to clarify. I appreciate any he

Re: help on extending user model using django rest_framework

2020-08-03 Thread Yemin Sajid
I think adding *"user" *in the fields array of the *ProfileSerializer*'s Meta class should solve the issue. On Thursday, July 30, 2020 at 5:22:06 PM UTC+6 tosina...@gmail.com wrote: > i have it defined in another app, but i've gotten it attached below > > On Thu, Jul 30, 2020 at 11:50 AM 'Amit

Re: help on extending user model using django rest_framework

2020-07-30 Thread ola neat
i have it defined in another app, but i've gotten it attached below On Thu, Jul 30, 2020 at 11:50 AM 'Amitesh Sahay' via Django users < django-users@googlegroups.com> wrote: > Where is your "CustomUser" defined? D you think it could be > > user = models.OneToOneField(User, ..) > > Regards, > Amit

Re: help on extending user model using django rest_framework

2020-07-30 Thread 'Amitesh Sahay' via Django users
Where is your "CustomUser" defined? D you think it could be  user = models.OneToOneField(User, ..) Regards, Amitesh  On Thursday, 30 July, 2020, 03:59:59 pm IST, ola neat wrote: good day fellaz, i'm working on extending my user model to enable user create a profile but i'm getting a

RES: Havingproblemwithdisplay. Appreciate any help!

2020-07-28 Thread Samuel Nogueira
In your last e-amil you didn’t put these urls: like /about, /btn and /blog De: Phan NguyenEnviado:terça-feira, 28 de julho de 2020 14:19Para: Django usersAssunto: Re: Havingproblemwithdisplay. Appreciate any help! Yes, exactly! But I also tried the local host server. And this is what I got(picture

RES: Havingproblemwithdisplay. Appreciate any help!

2020-07-28 Thread Samuel Nogueira
  Enviado do Email para Windows 10in your last e-amil you didn’t put this urls: like /about, /btn and /blog De: Phan NguyenEnviado:terça-feira, 28 de julho de 2020 14:19Para: Django usersAssunto: Re: Havingproblemwithdisplay. Appreciate any help! Yes, exactly! But I also tried the local host

Re: help on creating user profile using drf

2020-07-28 Thread ola neat
sorry this didnt work, when i try this if created: instance.profile = Profile.objects.create(user=instance) instance.save() i couldnt even register any user On Mon, Jul 27, 2020 at 2:24 AM Fernando Hernandez wrote: > I think the issue is here instance.profile will be None first time the

Re: Havingproblemwithdisplay. Appreciate any help!

2020-07-28 Thread Phan Nguyen
Yes, exactly! But I also tried the local host server. And this is what I got(picture attached) -- only the /admin works, the rest like /about, /btn and /blog cannot be found.. [image: Screen Shot 2020-07-29 at 00.15.47.png] On Tuesday, July 28, 2020 at 9:30:01 PM UTC+7, Samuel Nogueira wrote:

RES: Havingproblemwithdisplay. Appreciate any help!

2020-07-28 Thread Samuel Nogueira
Your problem with the html is that you probably are accessing via file path, instead try to access via localhostEx: localhost:8000/your-url De: Phan NguyenEnviado:terça-feira, 28 de julho de 2020 08:45Para: Django usersAssunto: Havingproblemwithdisplay. Appreciate any help! I got no idea how to

Re: help me

2020-07-27 Thread Boris Pérez
opier l'erreur dans Google, c'est un import erreur >> dans votre virtual environment du python. >> He pense que la solution serra quelque chose comme "pip install " >> >> >> Le lun. 27 juil. 2020 à 06:00, MUGOYA DIHFAHSIH a >> écrit

Re: Help me pleace

2020-07-27 Thread Boris Pérez
Do you have any setting related to sender_email into yours project settings??? Si hablas español, chequea que no tengas nada clavado en los settings de tu proyecto...o que en el formulario no vaya ningun hidden input con ese name "correo" y con el value apuntando a tu correo... Greetings 2020-07-2

Re: help me

2020-07-27 Thread Agoua David
erra quelque chose comme "pip install " > > > Le lun. 27 juil. 2020 à 06:00, MUGOYA DIHFAHSIH a > écrit : > >> if you could translate the error in Enl=glish, maybe we could be of help >> >> On Mon, 27 Jul 2020 at 03:08, Deborah wrote: >&g

Re: help me

2020-07-26 Thread Yamen Gamal Eldin
the error in Enl=glish, maybe we could be of help > > On Mon, 27 Jul 2020 at 03:08, Deborah wrote: > >> bonsoir >> >> je suis bloquée avec -ça je ne sais pas quoi faire >> >> -- >> You received this message because you are subscribed to the Google Groups

Re: help me

2020-07-26 Thread MUGOYA DIHFAHSIH
if you could translate the error in Enl=glish, maybe we could be of help On Mon, 27 Jul 2020 at 03:08, Deborah wrote: > bonsoir > > je suis bloquée avec -ça je ne sais pas quoi faire > > -- > You received this message because you are subscribed to the Google Groups > "

Re: help on creating user profile using drf

2020-07-26 Thread Fernando Hernandez
I think the issue is here instance.profile will be None first time the CustomUser is created, you need to assign the created Profile to the instance and then save the user [image: image.png] try this if created: instance.profile = Profile.objects.create(user=instance) instance.save() On

help me

2020-07-26 Thread Deborah
bonsoir je suis bloquée avec -ça je ne sais pas quoi faire -- 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 view th

Re: Help me pleace

2020-07-26 Thread Ryan Nowakowski
You probably want to put the sender's email in the reply-to header. That way the from header can be your Django project's from email. On July 22, 2020 11:16:49 AM CDT, Nikola Tesla wrote: >/Hi, I'm trying to get the sender's email in the headers of my email (I > >mean my blog's contact form). Wh

Re: help with my api and JWT

2020-07-26 Thread ola neat
thanks it worked On Sat, Jul 25, 2020 at 10:45 PM Robson Andrade wrote: > Hello friend, > > I noticed that you are using the standard token authentication system. > However, this method does not correspond to JWT. > > Since you want to use authentication through JWT with DRF, you must use: > > 1

Re: help with my api and JWT

2020-07-25 Thread Robson Andrade
Hello friend, I noticed that you are using the standard token authentication system. However, this method does not correspond to JWT. Since you want to use authentication through JWT with DRF, you must use: 1) A JWT library that implements this type of authentication which helps you to create

RES: RES: Help me pleace

2020-07-23 Thread Samuel Nogueira
Sorry if I took so long.Probably your variable “correo” isn't set up correctly and, instead having another e-mail, your variable is being addressed with your own e-mail De: Nikola TeslaEnviado:quarta-feira, 22 de julho de 2020 17:18Para: django-users@googlegroups.comAssunto: Re: RES: He

Re: RES: Help me pleace

2020-07-22 Thread Nikola Tesla
Please, can you send some screenshots of the code related to your question? -- 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...@googlegr

Re: Need Help : Custom User Model

2020-07-22 Thread Exactly musty
Reach me I would give you my github repo to copy it from -- 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 view this

Re: Need Help : Custom User Model

2020-07-22 Thread Exactly musty
development and more so with the use of django. How do > I create a custom user model that has additional fields for other users of > my web app while keeping the default django user model for myself - > mid-project. I appreciate the help. > Thanks. -- You received this message bec

Need Help : Custom User Model

2020-07-22 Thread Joel T
I'm a newbie to web development and more so with the use of django. How do I create a custom user model that has additional fields for other users of my web app while keeping the default django user model for myself - mid-project. I appreciate the help. Thanks. -- You received this me

RES: Help me pleace

2020-07-22 Thread Samuel Nogueira
Please, can you send some screenshots of the code related to your question? De: Nikola TeslaEnviado:quarta-feira, 22 de julho de 2020 14:52Para: django-users@googlegroups.comAssunto: Help me pleace Hi, I'm trying to get the sender's email in the headers of my email (I mean my blog'

Help me pleace

2020-07-22 Thread Nikola Tesla
/Hi, I'm trying to get the sender's email in the headers of my email (I mean my blog's contact form). When the visitor sends me a message through my blog's contact form, I want his email to appear in the section that says From... attach an image / /How can I set it up so that it reaches me cor

Re: help been on that for 5 days, Joining 4 tables on 2 columns

2020-07-17 Thread Integr@te System
Hi Omar, You can look at this to consider: https://hakibenita.com/django-group-by-sql Hope this helpful. On Sat, Jul 18, 2020, 12:32 AM Omar aboul makarem < omaraboulmaka...@gmail.com> wrote: > > Hey Guys please help > > I have Approval model, and i want to calculate the s

help been on that for 5 days, Joining 4 tables on 2 columns

2020-07-17 Thread Omar aboul makarem
Hey Guys please help I have Approval model, and i want to calculate the sum of total prices of the procedures based on the company and procedure type in each Approval *https://www.ppaste.org/pwhJ6u7Dg* <https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.ppaste.org%2FpwhJ6u7Dg%3Ffbc

Please help I want to list down all the users with the sharewith from the frontend in backend I used Many to Many field and also my data is not getting into database

2020-07-16 Thread mick
views.py def notesadd(request): form = NoteForm(request.POST or None) if form.is_valid(): form.save() form=NoteForm() context = { 'form': form } print('submitted') return render(request, 'notes.html', context) models.py class Notes(mode

Re: Can someone help me??

2020-07-01 Thread Hella Nick
t;>>> >>>>> Dear Mir oba stephen: >>>>> >>>>> I deleted "volume" function,But The result is the same. >>>>> >>>>> Hella Nick 于2020年7月2日周四 上午10:51写道: >>>>> >>>>>

Re: Can someone help me??

2020-07-01 Thread oba stephen
t;>> Hella Nick 于2020年7月2日周四 上午10:51写道: >>>> >>>>> Dear Sencer: >>>>> >>>>> >>>>>> index >>>>> >>>>> >>>>> >>>>> >>>>>- >>>>>

Re: Can someone help me??

2020-07-01 Thread Mohammed Alnajdi
;- >>>> >>>> There is no problem with writing this wayI don't understand >>>>why. >>>> >>>> >>>> Thank You >>>> >>>> Sencer Hamarat 于2020年7月1日周三 下午5:13写道: >>>> >>

Re: Can someone help me??

2020-07-01 Thread Hella Nick
"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 >>

Re: Can someone help me??

2020-07-01 Thread oba stephen
the one of that value is not a >>> string. >>> I think the "ModelBase" model has no '__str__'. >>> >>> Saygılarımla, >>> Sencer HAMARAT >>> >>> >>> >>> On Wed, Jul 1, 2020 at

Re: Can someone help me??

2020-07-01 Thread Hella Nick
elf, the one of that value is not a >> string. >> I think the "ModelBase" model has no '__str__'. >> >> Saygılarımla, >> Sencer HAMARAT >> >> >> >> On Wed, Jul 1, 2020 at 12:04 PM oba stephen >> wrote: >> >>&

Re: Can someone help me??

2020-07-01 Thread Hella Nick
gt;> 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 so

Re: Can someone help me??

2020-07-01 Thread Sencer Hamarat
at 12:04 PM oba stephen wrote: > 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: > >

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 catalog

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/')] ,

Can somebody help me in this case

2020-06-27 Thread Puneet Makhija
https://stackoverflow.com/questions/62608223/override-a-field-in-child-class-from-the-parent-class-in-django If their will be no solution for this, Then I have to change my overall structure of the Code, Its take too much effort to do, and again testing required by the tester, Please help me

Re: help

2020-06-24 Thread Peter Kirieny
thanks Robert On Wed, 24 Jun 2020 at 08:35, Robert Rajendra wrote: > to configure virtual environment > 1. python -m pip install virtualenv > 2. go to project folder and type:- virtualenv > 3. source /bin/activate > 4. Once it is activated you will see the name of your project in the left > cor

Re: help

2020-06-24 Thread Kasper Laudrup
Hi RaviKiran, On 24/06/2020 07.42, RaviKiran Kk wrote: Hello All, Any one used django for IoT applications? Learn how to use Google Groups (or mailling lists): https://www.dummies.com/education/internet-basics/how-to-post-messages-in-google-groups/ Kind regards, Kasper Laudrup -- You rec

Re: help

2020-06-23 Thread RaviKiran Kk
Hello All, Any one used django for IoT applications? Regards Ravi On Wed, Jun 24, 2020 at 11:06 AM Robert Rajendra < robert.rajen...@ithands.biz> wrote: > to configure virtual environment > 1. python -m pip install virtualenv > 2. go to project folder and type:- virtualenv > 3. source /bin/act

Re: help

2020-06-23 Thread Robert Rajendra
to configure virtual environment 1. python -m pip install virtualenv 2. go to project folder and type:- virtualenv 3. source /bin/activate 4. Once it is activated you will see the name of your project in the left corner of your terminal enclosed within () 5. pip install 6. make sure to create a r

Re: help

2020-06-23 Thread Kasper Laudrup
Hi Peter, On 23/06/2020 13.15, Peter Kirieny wrote: thank you how do i activate virtual environment please? https://hostadvice.com/how-to/how-to-create-a-virtual-environment-for-your-django-projects-using-virtualenv/ Was the first result I could find on a Google search. Kind regards, Kaspe

Re: help

2020-06-23 Thread Peter Kirieny
; wrote: > >> yes, postgres >> >> On Mon, 22 Jun 2020 at 19:04, Jatin Agrawal >> wrote: >> >>> Are you using postgres? >>> >>> On Monday, June 22, 2020 at 8:34:55 PM UTC+5:30, Peter Kirieny wrote: >>>> >>>> ca

Re: help

2020-06-23 Thread meera gangani
;,} Otherwise 'USERNAME': 'admin', You can try both ! On Tue, Jun 23, 2020 at 2:21 PM Peter Kirieny wrote: > yes, postgres > > On Mon, 22 Jun 2020 at 19:04, Jatin Agrawal wrote: > >> Are you using postgres? >> >> On Monday, June 22, 2020 at 8:34

Re: help

2020-06-23 Thread Peter Kirieny
yes, postgres On Mon, 22 Jun 2020 at 19:04, Jatin Agrawal wrote: > Are you using postgres? > > On Monday, June 22, 2020 at 8:34:55 PM UTC+5:30, Peter Kirieny wrote: >> >> can someone help with this please >> >> django.db.utils.OperationalError: FATAL: password

Re: I'm new to this django help me out

2020-06-22 Thread sree lekha
How to send live output that we got on our screen ... It should display the same if they open that in phone or anything...how can we do that? On Fri, May 15, 2020, 21:48 Sunday Iyanu Ajayi wrote: > You can host the project on a server and share the url > > Or can you enlighten me on what you me

Re: help

2020-06-22 Thread Jatin Agrawal
Are you using postgres? On Monday, June 22, 2020 at 8:34:55 PM UTC+5:30, Peter Kirieny wrote: > > can someone help with this please > > django.db.utils.OperationalError: FATAL: password authentication failed > for user "Admin" > -- You received this message becau

help

2020-06-22 Thread Peter Kirieny
can someone help with this please django.db.utils.OperationalError: FATAL: password authentication failed for user "Admin" -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: Help me out please

2020-06-20 Thread Marcin Wiśniewsk
PISZCIE PO POLSKU Wysłane z aplikacji Outlook Mobile<https://aka.ms/blhgte> From: django-users@googlegroups.com on behalf of Alison Mukoma Sent: Saturday, June 20, 2020 11:30:50 AM To: django-users@googlegroups.com Subject: Re: Help me out please Hey,

Re: how to Setup django helpdesk package to Django application - Please help

2020-06-20 Thread o1bigtenor
On Sat, Jun 20, 2020 at 8:26 AM VenkataSivaRamiReddy wrote: > > is there any details setup documentation?, i followed > https://github.com/django-helpdesk/django-helpdesk and clone the code and > created and activated virtual environment and after i run python setup.py > install. After i am try

<    4   5   6   7   8   9   10   11   12   13   >