Re: help me

2021-07-28 Thread SKYLINE TV
You can. Use name cheap, cpanel On Wednesday, July 28, 2021, David Crandell wrote: > Try deploying to a PaaS platform like Heroku or DigitalOceans Apps service. > > They can be very cost effective and are an excellent way to host a Django > app. > > On Tuesday, July 27, 2021 at 11:26:13 AM

Re: help me

2021-07-28 Thread David Crandell
Try deploying to a PaaS platform like Heroku or DigitalOceans Apps service. They can be very cost effective and are an excellent way to host a Django app. On Tuesday, July 27, 2021 at 11:26:13 AM UTC-5 kossit...@gmail.com wrote: > > I need a video who explains how to host a site on ionos > --

Re: help me

2021-07-27 Thread Théodore KOSSI
Propose me a hosting that support python Le mar. 27 juil. 2021 à 17:24, Théodore KOSSI a écrit : > > I need a video who explains how to host a site on ionos > -- > theodoros17@python-developer > -- theodoros17@python-developer -- You received this message because you are subscribed to the

help me

2021-07-27 Thread Théodore KOSSI
I need a video who explains how to host a site on ionos -- theodoros17@python-developer -- 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

Re : help in updating multiple objects in a single template

2021-07-16 Thread Avi shah
I have a query which returns multiple objects , so how to update those values in a single page , currently i am only getting one form with one object , I want all the objects and one submit button , please help Views.py [image: image.png] Form [image: image.png] Current form loook [image

Re: Looking for help to add quantity field in my food ordering project

2021-07-16 Thread Derek
02/EasyOrders/tree/master> and to add the > quantity feature, there are two more active branches on the site. > Since it is only my second Django project, I really wish it gets completed. > If you feel you can help, please let me know. > Any kind of help will be highly appreciable. &g

Re: Help me for user connection message error

2021-07-16 Thread Théodore KOSSI
thanks you very much for your attention. I have already fund it Le ven. 16 juil. 2021 à 04:04, Gabriel Araya Garcia < gabrielaraya2...@gmail.com> a écrit : > How? with a message. It's very simple. > It's is in authentication page that you had build. > > > Gabriel Araya Garcia > GMI - Desarrollo

Re: Help me for user connection message error

2021-07-15 Thread Gabriel Araya Garcia
How? with a message. It's very simple. It's is in authentication page that you had build. Gabriel Araya Garcia GMI - Desarrollo de Sistemas Informáticos El jue, 15 jul 2021 a las 14:04, Kasper Laudrup () escribió: > On 15/07/2021 19.14, Théodore KOSSI wrote: > > > > I want to know how to

Re: Help me for user connection message error

2021-07-15 Thread Kasper Laudrup
On 15/07/2021 19.14, Théodore KOSSI wrote: > > I want to know how to transmit an error message when user try to connect  That's very simple. Just make sure there's nothing the user can connect to, then the user will get an error message. You don't even have to transmit anything. If that's not

Help me for user connection message error

2021-07-15 Thread Théodore KOSSI
I want to know how to transmit an error message when user try to connect theodoros17@python-developer -- 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

Looking for help to add quantity field in my food ordering project

2021-07-15 Thread Shashank Tiwari
tps://github.com/tiwari1302/EasyOrders/tree/master> and to add the quantity feature, there are two more active branches on the site. Since it is only my second Django project, I really wish it gets completed. If you feel you can help, please let me know. Any kind of help will be highly appreciable.

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread Tree Chip Net
ncy should be counted this way: word word_freq word1 10 word2 15 word3 20 I need Urgent help please. Em qui, 8 de jul de 2021 18:51, DJANGO DEVELOPER escreveu: > let suppose I have 2 models: > *class String(models.model):* > *string = models.textarea(null = True, blank =

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread DJANGO DEVELOPER
the save method on the String model and when you hit save you >>> split and save the words in the S_W_C model. This does mean when you update >>> the String record all the words are added to the S_W_C model as well, as >>> there is no correlation between the two model you don't kn

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread DJANGO DEVELOPER
nd when you hit save you >> split and save the words in the S_W_C model. This does mean when you update >> the String record all the words are added to the S_W_C model as well, as >> there is no correlation between the two model you don't know if that String >> was already counted.

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread Sebastian Jung
es mean when you update > the String record all the words are added to the S_W_C model as well, as > there is no correlation between the two model you don't know if that String > was already counted. > On 7/8/21 10:26 PM, DJANGO DEVELOPER wrote: > > is there anyone who can help me her

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread Tech Cue
String > was already counted. > On 7/8/21 10:26 PM, DJANGO DEVELOPER wrote: > > is there anyone who can help me here? > > On Fri, Jul 9, 2021 at 2:51 AM DJANGO DEVELOPER > wrote: > >> let suppose I have 2 models: >> *class String(models.model):* >> *str

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-09 Thread 'Peter van der Does' via Django users
was already counted. On 7/8/21 10:26 PM, DJANGO DEVELOPER wrote: > is there anyone who can help me here? > > On Fri, Jul 9, 2021 at 2:51 AM DJANGO DEVELOPER > mailto:abubakarbr...@gmail.com>> wrote: > > let suppose I have 2 models: > *class String(models

Re: Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-08 Thread DJANGO DEVELOPER
is there anyone who can help me here? On Fri, Jul 9, 2021 at 2:51 AM DJANGO DEVELOPER wrote: > let suppose I have 2 models: > *class String(models.model):* > *string = models.textarea(null = True, blank = True)* > *user = models.ForeignKey(user, on_delete=models.CASCADE)

Django help| Urgent | how to find the frequency of a string for each word using django admin?

2021-07-08 Thread DJANGO DEVELOPER
ncy should be counted this way: word word_freq word1 10 word2 15 word3 20 I need Urgent help please. -- 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 d

Re: Django Help | Counting word frequency in Django using dictionary.

2021-07-07 Thread Lalit Suthar
ango admin side. >>> example: any_string = {'word1': 12,'word2': 29} >>> this the example because I want to get the data this way. word1 is there >>> for 12 times in a string and same is the case for word2. >>> so I need help and your help would be appreci

Re: hello i need a help

2021-07-07 Thread Richard Dushime
thank you but i wanted to send all the 4 fields and the "to" arguments how can i do it? .. its submission form data i tried to loook into the documentation everywhere they used 3 fields only On Mon, Jul 5, 2021 at 10:04 PM sum abiut wrote: > The error message is very clear send_mass_mail only

Re: Django Help | Counting word frequency in Django using dictionary.

2021-07-06 Thread DJANGO DEVELOPER
;> the database only. >> I have managed to do it on front-end side but now I also want to do it on >> django admin side. >> example: any_string = {'word1': 12,'word2': 29} >> this the example because I want to get the data this way. word1 is there >> for 12 times in

Re: Django Help | Counting word frequency in Django using dictionary.

2021-07-06 Thread Lalit Suthar
ay. word1 is there > for 12 times in a string and same is the case for word2. > so I need help and your help would be appreciated. > thanks. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from

Django Help | Counting word frequency in Django using dictionary.

2021-07-06 Thread DJANGO DEVELOPER
: any_string = {'word1': 12,'word2': 29} this the example because I want to get the data this way. word1 is there for 12 times in a string and same is the case for word2. so I need help and your help would be appreciated. thanks. -- You received this message because you are subscribed to the Google

Re: hello i need a help

2021-07-05 Thread sum abiut
The error message is very clear send_mass_mail only expect 4 values but you are passing in more than four. You should only pass in four values. datatuple = ( ('f_subject', 'f_message','f_email', ['mygm...@gmail.com']), # second person ('f_subject', 'f_message','f_email', ['sec...@gmail.com']) )

hello i need a help

2021-07-05 Thread Richard Dushime
i am getting this error down when trying to submit my form data to email {{ ValueError at /contact too many values to unpack (expected 4) Request Method: POST Request URL: http://localhost:8000/contact Django Version: 3.2.4 Exception Type: ValueError Exception Value: too many values to unpack

Re: HELP WITH INSTALLING AND RUNNING PGAGENT AS A DAEMON

2021-07-01 Thread Kasper Laudrup
On 01/07/2021 17.49, Sunday Iyanu Ajayi wrote: > > Please I need guidance in setting up Pgagent as a daemon on my ubuntu https://gist.github.com/v4r15/b246b81ec09c488ebecac4610d975456 Kind regards, Kasper Laudrup -- You received this message because you are subscribed to the Google Groups

HELP WITH INSTALLING AND RUNNING PGAGENT AS A DAEMON

2021-07-01 Thread Sunday Iyanu Ajayi
Dear Team, Please I need guidance in setting up Pgagent as a daemon on my ubuntu *AJAYI Sunday * (+234) 806 771 5394 *sunnexaj...@gmail.com * -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: In need of urgent help for products sorting and displaying

2021-06-28 Thread Kasper Laudrup
On 28/06/2021 13.58, Aritra Ray wrote: > We've realised the error but are unable to fix it. We'll be grateful if > you can solve it for us as we've been stuck on this for a long time. I cannot solve your problems for you, but I and many others will be happy to help if you provide some d

Re: In need of urgent help for products sorting and displaying

2021-06-28 Thread Aritra Ray
looks like this: path('products', Product.as_view(), name='products-list'). The problem is the url pattern. Can you help us resolve this issue? The GitHub link to our repo is https://github.com/First-project-01/Django-ecommerce Will be of great help Regards, Aritra. On Mon, 28 Jun 2021 at 16:

Re: In need of urgent help for products sorting and displaying

2021-06-28 Thread Kasper Laudrup
orm but I am unable to display the products when sorted > by price. I've attached the required files below.   > > Do let me know if anything else is needed.  > Thanks for your help in advance > Check the "action" parameter to your form. Where exactly does the string give

Re: Help

2021-06-27 Thread sum abiut
alo django devs, > I'm working on a drf api to return hit count on my site & I've got no > idea how to archive that, can anyone help? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from thi

Help

2021-06-27 Thread ola neat
Halo django devs, I'm working on a drf api to return hit count on my site & I've got no idea how to archive that, can anyone help? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receivi

Re: Kindly help me with Django filer, urgent need.

2021-06-25 Thread Aritra Ray
g to price. I used django-filter to filter category and size. >> Please suggest a solution for price in the following manner: Latest >> products, Lowest to Highest and Highest to Lowest. I've made some progress >> in the template without using django-filter. Kindly help me tie it u

Re: Kindly help me with Django filer, urgent need.

2021-06-25 Thread Symaxx
django-filter. Kindly help me tie it up with > the backend. > > Do let me know if anything else is needed. > Thanks for your help in advance > > Regards, > Aritra > > #products-html > > > > > {{filter.form|

Kindly help me with Django filer, urgent need.

2021-06-25 Thread Aritra Ray
, Lowest to Highest and Highest to Lowest. I've made some progress in the template without using django-filter. Kindly help me tie it up with the backend. Do let me know if anything else is needed. Thanks for your help in advance Regards, Aritra #products-html

In need of urgent help as I've been stuck on this for a while

2021-06-24 Thread Aritra Ray
, Lowest to Highest and Highest to Lowest. I've made some progress in the template without using django-filter. Kindly help me tie it up with the backend. Do let me know if anything else is needed. Thanks for your help in advance Regards, Aritra #products-html

Fwd: Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Parul.
-- Forwarded message - From: Parul. Date: Wed, Jun 23, 2021, 11:34 PM Subject: Error while creating an ecommerce website :PLEASE HELP! To: Hi, I am working on an ecommerce website. I am facing an error. Can anyone please help me solve this error. I am not able to fetch

Re: Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Parul.
are you are using, >>> And then get products thrid that I'd by simple ORM quriy >>> >>> Product = model name.objects.get(id=id) >>> >>> On Wed, 23 Jun, 2021, 11:35 PM Parul., wrote: >>> >>>> Hi, >>>> I am work

Re: Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Aadil Rashid
gt; Product = model name.objects.get(id=id) >> >> On Wed, 23 Jun, 2021, 11:35 PM Parul., wrote: >> >>> Hi, >>> I am working on an ecommerce website. I am facing an error. Can anyone >>>

Re: Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Parul.
I'd to the view you are you are using, > And then get products thrid that I'd by simple ORM quriy > > Product = model name.objects.get(id=id) > > On Wed, 23 Jun, 2021, 11:35 PM Parul., wrote: > >> Hi, >> I am working on an ecommerce website. I am facing an error. Can anyone &

Re: Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Aadil Rashid
Pass I'd to the view you are you are using, And then get products thrid that I'd by simple ORM quriy Product = model name.objects.get(id=id) On Wed, 23 Jun, 2021, 11:35 PM Parul., wrote: > Hi, > I am working on an ecommerce website. I am facing an error. Can anyone > please help

Error while creating an ecommerce website :PLEASE HELP!

2021-06-23 Thread Parul.
Hi, I am working on an ecommerce website. I am facing an error. Can anyone please help me solve this error. I am not able to fetch the PRODUCT_ID 1. views.py (APP-CART) --- from django.shortcuts

Re: kindly i need a help

2021-06-23 Thread Kelvin Sajere
I see three errors in your views and templates. First, the kvc variable in your view holds a list of all objects in your Aboutus table and all objects in your Services table, and I don’t think that’s what you want. If I understand what you want to achieve, then your view should look like this.

Re: Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Aritra Ray
Can you write the class based function of the above views.py. I'm unable to do so. Will be of great help. On Wed, 23 Jun 2021 at 21:54, Shailesh Yadav wrote: > in Html code > > > {{items_filter.form}} > > Search > > > > Thanks & Regards > Shailes

Re: Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Aritra Ray
-b7ab89110> > > > > On Wed, Jun 23, 2021 at 9:13 PM Aritra Ray wrote: > >> Sorry, it's not working. I tried items_filter.form but it didn't work. >> Kindly check my views.py if that'll be of any help or require any changes. >> >> >&g

Re: Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Shailesh Yadav
b7ab89110> > > > > On Wed, Jun 23, 2021 at 9:13 PM Aritra Ray wrote: > >> Sorry, it's not working. I tried items_filter.form but it didn't work. >> Kindly check my views.py if that'll be of any help or require any changes. >> >&

Re: Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Shailesh Yadav
h-yadav-b7ab89110> On Wed, Jun 23, 2021 at 9:13 PM Aritra Ray wrote: > Sorry, it's not working. I tried items_filter.form but it didn't work. > Kindly check my views.py if that'll be of any help or require any changes. > > > On Wed, 23 Jun 2021 at 15:02, Shailesh Yadav > wrote:

kindly i need a help

2021-06-23 Thread Richard Dushime
i am making a website using django and postgresql the when i made a migration and i created the tables then i i went in the admin (django administration ) everything was okay the user and the data i can add and manipulate all the data and get effect into the database but on my webpages i am

Re: Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Aritra Ray
Sorry, it's not working. I tried items_filter.form but it didn't work. Kindly check my views.py if that'll be of any help or require any changes. On Wed, 23 Jun 2021 at 15:02, Shailesh Yadav wrote: > Okay use below in html > {{yourmodelnameinsmall_filter.form}} > > Thanks & Re

Re: Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Aritra Ray
un, 2021, 2:57 pm Shailesh Yadav, < >> shaileshyadav7...@gmail.com> wrote: >> >>> Can you help with what ERROR you are getting? >>> >>> Thanks & Regards >>> Shailesh Yadav >>> +91-9920886044 >>> >>> [image: Link

Re: Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Shailesh Yadav
ying a filter, the html is displaying > all the products irrespective of the requested. > > On Wed, 23 Jun, 2021, 2:57 pm Shailesh Yadav, > wrote: > >> Can you help with what ERROR you are getting? >> >> Thanks & Regards >> Shailesh Yadav >> +91-9920886044

Re: Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Aritra Ray
This isn't working. When we are supplying a filter, the html is displaying all the products irrespective of the requested. On Wed, 23 Jun, 2021, 2:57 pm Shailesh Yadav, wrote: > Can you help with what ERROR you are getting? > > Thanks & Regards > Shailesh Yadav > +91-9920

Re: Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Shailesh Yadav
Can you help with what ERROR you are getting? Thanks & Regards Shailesh Yadav +91-9920886044 [image: Linkedin] <https://in.linkedin.com/in/shailesh-yadav-b7ab89110> On Wed, Jun 23, 2021 at 2:25 PM Aritra Ray wrote: > Hi, > I've been trying to introduce a filter sys

Need urgent help with filter system (django-filter) in Django

2021-06-23 Thread Aritra Ray
Hi, I've been trying to introduce a filter system in my Django-ecommerce website and I've been struggling despite reading the documents, etc. I am using 'django-filter' and below are filters.py, models.py, views.py and the template. To check out the project, follow the github link:

Re: In need of urgent help regarding dynamic image display v

2021-06-23 Thread Aritra Ray
June 17, 2021 at 4:11:11 AM UTC-7 arit...@gmail.com wrote: > >> Hi, >> I've been building a Django E-commerce website and I'm facing this >> problem. >> I have created a Banner model which will take in images via >> django.ResizedImage and then display it in the homepage.

Re: Help me Please - Django and python program

2021-06-22 Thread mayank sandikar
Sure sir thank you again On Wed, Jun 23, 2021 at 8:10 AM DJANGO DEVELOPER wrote: > +923012876771, you can send me your queries here. > > On Wed, Jun 23, 2021 at 7:39 AM DJANGO DEVELOPER > wrote: > >> is it resolved now? or still want some help? >> >> On Tu

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
+923012876771, you can send me your queries here. On Wed, Jun 23, 2021 at 7:39 AM DJANGO DEVELOPER wrote: > is it resolved now? or still want some help? > > On Tue, Jun 22, 2021 at 9:44 PM mayank sandikar < > mayanksandikar191...@gmail.com> wrote: > >> Thank you sir,

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
is it resolved now? or still want some help? On Tue, Jun 22, 2021 at 9:44 PM mayank sandikar < mayanksandikar191...@gmail.com> wrote: > Thank you sir, sorry for all the troubles. > > On Tue, Jun 22, 2021 at 4:41 PM DJANGO DEVELOPER > wrote: > >> request.FILES used wh

Re: Help me Please - Django and python program

2021-06-22 Thread mayank sandikar
>>>>>>>> {% for displayemp in editupdaterecord%} >>>>>>>> >>>>>>>> {{displayemp.id}} >>>>>>>> {{displayemp.Itemname}} >>>>>>>> {{displayemp.quantity}} >&g

Re: Help me - Django and python

2021-06-22 Thread DJANGO DEVELOPER
have you removed for loop from your form? On Tue, Jun 22, 2021 at 8:33 PM DJANGO DEVELOPER wrote: > because it is necessary to write when there are no more conditions left. > > On Tue, Jun 22, 2021 at 6:31 PM avdesh sharma > wrote: > >> what will happen if I change from elif to else ? >> FYI -

Re: Help me - Django and python

2021-06-22 Thread DJANGO DEVELOPER
because it is necessary to write when there are no more conditions left. On Tue, Jun 22, 2021 at 6:31 PM avdesh sharma wrote: > what will happen if I change from elif to else ? > FYI - I checked it but still getting same error. > > On Tue, Jun 22, 2021 at 2:51 PM DJANGO DEVELOPER > wrote: > >>

Re: Help me - Django and python

2021-06-22 Thread avdesh sharma
what will happen if I change from elif to else ? FYI - I checked it but still getting same error. On Tue, Jun 22, 2021 at 2:51 PM DJANGO DEVELOPER wrote: > your index.html > > > PASSWORD > class="form-control" name="password" placeholder="Enter Password"> > > > {% if login ==

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
gt;>>>>>> >>>>>>> >>>>>>> >>>>>>> {% csrf_token %} >>>>>>> >>>>>>> >>>>>>> >>>>>>>

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
>>>> >>>>>> {% csrf_token %} >>>>>> >>>>>> >>>>>> >>>>>> ID >>>>>> Itemname >>>>>> Quant

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
t; userquantity >>>>> amount >>>>> >>>>> >>>>> {% for displayemp in editupdaterecord%} >>>>> >>>>> {{displayemp.id}} >>>>>

Re: Help me Please - Django and python program

2021-06-22 Thread mayank sandikar
mname}} >>>> {{displayemp.quantity}} >>>> >>>> >>>> >>>> >>>>{% csrf_token %} >>>> >>> "{{editupdaterecord.userquantity}}" > >>>&g

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
{% endfor %} >>> >>> >>> >>> >>> >>> Add >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> On Tue, Jun 22, 2021 at 3:49 PM mayank san

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
{% endfor %} >>> >>> >>> >>> >>> >>> Add >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> On Tue, Jun 22, 2021 at 3:49 PM maya

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
:49 PM mayank sandikar < >> mayanksandikar191...@gmail.com> wrote: >> >>> Hello sir, >>> I'm trying to insert the data in the table. For example in database >>> Itemname quantity price user-quantity amount >>> pen20 5

Re: Help me Please - Django and python program

2021-06-22 Thread mayank sandikar
>>>{{displayemp.amount2}} >>> >>> {% endfor %} >>> >>> >>> >>> >>> >>> Add >>> >>> >>> >>> &g

Re: Help me Please - Django and python program

2021-06-22 Thread mayank sandikar
> >> >> >> >> >> >> >> >> >> On Tue, Jun 22, 2021 at 3:49 PM mayank sandikar < >> mayanksandikar191...@gmail.com> wrote: >> >>> Hello sir, >>> I'm trying to insert the data in the table. For example in da

Re: Help me Please - Django and python program

2021-06-22 Thread mayank sandikar
;> pen20 5 00 >> book 20 10 00 >> 20 >> >> I want to take the itemname, quantity, and price in the last row as well. >&

Re: Help me Please - Django and python program

2021-06-22 Thread mayank sandikar
0 > > I want to take the itemname, quantity, and price in the last row as well. > In my html front view (screenshot 50) only the last text box is active in > the user quantity column. > > please help me. > thank you > > > > On Tue, Jun 22, 2021 at 2

Re: Help me Please - Django and python program

2021-06-22 Thread mayank sandikar
is active in the user quantity column. please help me. thank you On Tue, Jun 22, 2021 at 2:58 PM DJANGO DEVELOPER wrote: > according to your code, you're trying to update the product record. right? > If so, then you're doing things the right way. > > On Tue, Jun 22, 2021 at 9:50 AM may

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
front view only my last text box is working and all the upper >>>>> text boxes are unassessable. >>>>> 2. Database >>>>> I am getting only the user quantity in the database but not getting >>>>> the itemname, price and total amount in it. >>>>>

Re: Help me - Django and python

2021-06-22 Thread DJANGO DEVELOPER
your index.html PASSWORD {% if login == 'inactive' %} User Inactive! Contact Admin! {% elif login == 'invalid' %} line 32 username or password Invalid {% endif%} {% if tab_error == True %} Invalid Tab Selected {% endif %} changed index.html PASSWORD {% if

Re: Help me - Django and python

2021-06-22 Thread DJANGO DEVELOPER
by seeing your code, it seems that only the 'else' part is working. have you provided value='{{dict_key.model_password_field}} in your html input element? On Tue, Jun 22, 2021 at 12:52 PM avdesh sharma wrote: > Here is my View.py code > > from django.shortcuts import render > from django.http

Re: Help me - Django and python

2021-06-22 Thread avdesh sharma
Here is my View.py code from django.shortcuts import render from django.http import HttpResponseRedirect from django.urls import reverse from django.contrib.auth import authenticate, logout, login from django.contrib.auth.decorators import login_required from student.models import * from

Re: Help me - Django and python

2021-06-22 Thread DJANGO DEVELOPER
I think you're not returning anything in your model. On Tue, Jun 22, 2021 at 11:24 AM DJANGO DEVELOPER wrote: > can you please share your login view code? > > On Tue, Jun 22, 2021 at 10:12 AM avdesh sharma > wrote: > >> Hi All, >> >> I have an issue coming in my django code, even though the

Re: Help me - Django and python

2021-06-22 Thread DJANGO DEVELOPER
can you please share your login view code? On Tue, Jun 22, 2021 at 10:12 AM avdesh sharma wrote: > Hi All, > > I have an issue coming in my django code, even though the user id and > password is present in sqlite3 db still the user is giving '*None'* > value > user =

Help me - Django and python

2021-06-21 Thread avdesh sharma
Hi All, I have an issue coming in my django code, even though the user id and password is present in sqlite3 db still the user is giving '*None'* value user = authenticate(username=username, password=password) and I am not able to login with user and throwing this error. [image: image.png]

Re: Help me Please - Django and python program

2021-06-21 Thread mayank sandikar
;>> text boxes are unassessable. >>>> 2. Database >>>> I am getting only the user quantity in the database but not getting the >>>> itemname, price and total amount in it. >>>> >>>> I don't know where it is going wrong, I've been

Re: Help me Please - Django and python program

2021-06-21 Thread Onyemordi Daniel
een stuck here for the last >>> 4 days. I'm a beginner in django and python. Which logic is used for this >>> program? >>> Please, please help me. >>> >>> PFA >>> >> -- >> You received this message because you are subscribed to the Go

Re: PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-21 Thread Sunday Iyanu Ajayi
You can use python package : beautifulsoup and selenium *AJAYI Sunday * (+234) 806 771 5394 *sunnexaj...@gmail.com * On Sun, Jun 20, 2021 at 1:59 AM Vrushang Desai wrote: > Hi Guys , > Anyone knows how to scrape Youtube Channels Emails? > > With Django/Python? > > If yes, > Pls reply! >

Re: Help me Please - Django and python program

2021-06-21 Thread mayank sandikar
; >> I don't know where it is going wrong, I've been stuck here for the last 4 >> days. I'm a beginner in django and python. Which logic is used for this >> program? >> Please, please help me. >> >> PFA >> > -- > You received this message because you

Re: PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-20 Thread Jacob Greene
Might be easier and more reliable to use the API. https://developers.google.com/youtube/v3 On Sun, Jun 20, 2021, 7:21 AM Priyesh Ranjan wrote: > yes i can do that for you > > On Sun, Jun 20, 2021 at 6:29 AM Vrushang Desai > wrote: > >> Hi Guys , >> Anyone knows how to scrape Youtube Channels

Re: Need help on RedirectView

2021-06-20 Thread Hello Singh
Thanks, David Sir It help me a lot. On Sun, 20 Jun 2021, 18:21 David Nugent, wrote: > It is just a method on the Article model. Don't copy-paste what is there, > understand what it is doing. > > In this *example*, update_counter() will be defined in > Article(models.M

Re: Need help on RedirectView

2021-06-20 Thread David Nugent
the given image. > > Please help me > Thanks developers > > -- > 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+uns

Re: PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-20 Thread Priyesh Ranjan
yes i can do that for you On Sun, Jun 20, 2021 at 6:29 AM Vrushang Desai wrote: > Hi Guys , > Anyone knows how to scrape Youtube Channels Emails? > > With Django/Python? > > If yes, > Pls reply! > Thanks. > > -- > You received this message because you are subscribed to the Google Groups >

Re: Help me Please - Django and python program

2021-06-20 Thread Luciano Martins
for this > program? > Please, please help me. > > PFA > -- 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...@googlegrou

Re: PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-20 Thread Luciano Martins
Do you want to download gmail content? Em sábado, 19 de junho de 2021 às 22:00:01 UTC-3, vrusha...@gmail.com escreveu: > Hi Guys , > Anyone knows how to scrape Youtube Channels Emails? > > With Django/Python? > > If yes, > Pls reply! > Thanks. > -- You received this message because you are

Re: help me plz: getting error while importing csv file into database

2021-06-20 Thread Luciano Martins
you have to pass the 'path' variable into open I believe that's it Em sexta-feira, 18 de junho de 2021 às 15:22:41 UTC-3, rammano...@gmail.com escreveu: > Hi > i am trying to import the csv file data into database > my views.py > def Filter(request): > if request.method=="POST": >

PLS HELP!! - SCRAPE YOUTUBE CHANNEL EMAIL

2021-06-19 Thread Vrushang Desai
Hi Guys , Anyone knows how to scrape Youtube Channels Emails? With Django/Python? If yes, Pls reply! Thanks. -- 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

Re: help me plz: button one click django(disable the submit button )

2021-06-19 Thread Kasper Laudrup
On 19/06/2021 21.58, hanin guesmi wrote: > ok i will thnx > You could spend the rest of your life doing that, so if you want someone to help you, it might be a better idea to write a bit about what you've tried, how it's not working etc. Of course, that's completely up to you, but w

Re: help me plz: button one click django(disable the submit button )

2021-06-19 Thread hanin guesmi
ok i will thnx Le samedi 19 juin 2021 à 20:43:57 UTC+1, Kasper Laudrup a écrit : > On 19/06/2021 13.58, hanin guesmi wrote: > > I. Tried many codes but not working > > > > Try a few more. You know how when you've lost something, you always find > it the last place you look? > > It's the same

Re: help me plz: button one click django(disable the submit button )

2021-06-19 Thread Kasper Laudrup
On 19/06/2021 13.58, hanin guesmi wrote: > I. Tried many codes but not working  > Try a few more. You know how when you've lost something, you always find it the last place you look? It's the same with codes. It's always the last one you try. Kind regards, Kasper Laudrup -- You received this

Re: please help! not getting the desired output. how to add multiple orders via Django forms using Javascript?

2021-06-19 Thread Williams Andy Inc
Anyone interested in talking about django sharing their knowledge or path or want to learn more? meeting Now https://meet.google.com/wcv-ojtf-vhi On Sat, Jun 19, 2021 at 10:31 AM DJANGO DEVELOPER wrote: > please can someone help me? > > On Sat, Jun 19, 2021 at 9:31 AM DJANGO

Re: help me plz: button one click django(disable the submit button )

2021-06-19 Thread Prasad Ajmire
Hey On Sat, Jun 19, 2021, 5:29 PM hanin guesmi wrote: > I. Tried many codes but not working > > Le sam. 19 juin 2021 à 04:58, DJANGO DEVELOPER > a écrit : > >> you can apply javascript to perform this action. >> >> On Sat, Jun 19, 2021 at 7:43 AM hanin guesmi >> wrote: >> >>> Hi >>> i am

Re: help me plz: button one click django(disable the submit button )

2021-06-19 Thread vvk
Hi all pls make one Wtapp group or Instagram group bevause mail box not sufficient to solve On Sat, Jun 19, 2021, 8:14 AM hanin guesmi wrote: > Hi > i am trying to disable send data when click in the second time in the > button > my template.html > > {% csrf_token %} > {%

<    1   2   3   4   5   6   7   8   9   10   >