Re: Help

2021-06-15 Thread DJANGO DEVELOPER
hi inside believer. +923012876771. Ping me on whats app. I will help you in your django project. On Wed, Jun 16, 2021 at 1:56 AM Sebastian Jung wrote: > Good luck to be an expert in Django in only one Montag > > Inside Believer schrieb am Mo., 7. Juni 2021, 18:21: > >> Sir I'm internee i know

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

2021-06-19 Thread DJANGO DEVELOPER
please can someone help me? On Sat, Jun 19, 2021 at 9:31 AM DJANGO DEVELOPER wrote: > for convenience, please follow addorder1 to addorder5 respectively. > > On Saturday, June 19, 2021 at 9:29:48 AM UTC+5 DJANGO DEVELOPER wrote: > >> Hi guys I need urgent help. your help is ap

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

2021-06-18 Thread DJANGO DEVELOPER
you can apply javascript to perform this action. On Sat, Jun 19, 2021 at 7:43 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 %} > {% bootstrap_form form %} > > submit > >

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

2021-06-18 Thread DJANGO DEVELOPER
for convenience, please follow addorder1 to addorder5 respectively. On Saturday, June 19, 2021 at 9:29:48 AM UTC+5 DJANGO DEVELOPER wrote: > Hi guys I need urgent help. your help is appreciated. > When I try to add a single order from user side then it works fine but > when I t

Re: How to insert into multiple tables cascading

2021-06-22 Thread DJANGO DEVELOPER
please share your related models and form as well. On Wed, Jun 23, 2021 at 1:22 AM David Crandell wrote: > Hello, I come from a platform where I built out forms and then manually > wrote insert statements from the form input entering all the data at once. > > What I want to do is enter a

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: How to insert into multiple tables cascading

2021-06-23 Thread DJANGO DEVELOPER
have you tried to implement the inlineformset_factory function within your views? if not then give a try to inlineformset_factory. because through inlineformset_factory you can populate data of different models through a single form. for now it looks a solution to me. On Wed, Jun 23, 2021 at

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 =

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 comi

Re: Help me - Django and python

2021-06-22 Thread DJANGO DEVELOPER
ass="form-control" name="password" placeholder="Enter Password"> > > > {% if login == 'inactive' %} > User Inactive! Contact > Admin! > {% elif login == 'invalid' %} > line 32 username or password > Invalid > {% endif%} > {% if

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
%} Add On Tue, Jun 22, 2021 at 3:32 PM DJANGO DEVELOPER wrote: > First of all please remove the for loop from your form. > secondly please add{{displayemp.userquantity_field}} > {{displayemp.amount_field}} > > On Tue, Jun 22, 2021 at 3:27 PM

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
request.FILES used when we need to insert images as well. if there is no image field then remove the request.FILES. On Tue, Jun 22, 2021 at 4:10 PM DJANGO DEVELOPER wrote: > follow this code's pattern but remember one thing that you have to follow > it according to your needs. > >

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
follow this code's pattern but remember one thing that you have to follow it according to your needs. On Tue, Jun 22, 2021 at 4:10 PM DJANGO DEVELOPER wrote: > def insetdata(request): > product_form = your_product_form() > if request.method == 'POST': >

Re: Help me - Django and python

2021-06-22 Thread DJANGO DEVELOPER
{% if login == 'inactive' %} User Inactive! Contact Admin! {% else %} line 32 username or password Invalid {% endif%} {% if tab_error == True %} Invalid Tab Selected {% endif %} On Tue, Jun 22, 2021 at 2:16 PM DJANGO DEVELOPER wrote: > by seeing your code, it seems that only the 'else' p

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 DJANGO DEVELOPER
is your code working now? On Tue, Jun 22, 2021 at 3:32 PM DJANGO DEVELOPER wrote: > First of all please remove the for loop from your form. > secondly please add{{displayemp.userquantity_field}} > {{displayemp.amount_field}} > > On Tue, Jun 22, 2021 at 3:27 PM

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
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 mayank sandikar < mayanksandikar191...@gmail.com> wrote: > hello , sir your mobile no. is not on whatsapp. please assist me with > this > >

Re: Help me Please - Django and python program

2021-06-22 Thread DJANGO DEVELOPER
the database > > On Tue, Jun 22, 2021 at 4:15 PM DJANGO DEVELOPER > wrote: > >> is your code working now? >> >> On Tue, Jun 22, 2021 at 3:32 PM DJANGO DEVELOPER >> wrote: >> >>> First of all please remove the for loop from yo

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 DEVELO

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

Re: Hi django

2021-06-24 Thread DJANGO DEVELOPER
muhammad haris salamat just make a form in your template, then have a name='any name here' and then make a view in which you have to get the name in the following way. query = request.POST.get('any name here') and then do this: value = ModelName.objects.filter(Q(model_field = query) On Thu, Jun

Re: DRF | Django | Up votes | Down Votes

2021-06-25 Thread DJANGO DEVELOPER
downvote'}).order_by('diff') > > > Best regards > > Stephen Oba > > On Fri, Jun 25, 2021, 6:03 AM DJANGO DEVELOPER > wrote: > >> Is there anyone who can help me here? >> >> On Thu, Jun 24, 2021 at 7:15 PM DJANGO DEVELOPER >> wrote: >> >&g

Re: DRF | Django | Up votes | Down Votes

2021-06-24 Thread DJANGO DEVELOPER
Is there anyone who can help me here? On Thu, Jun 24, 2021 at 7:15 PM DJANGO DEVELOPER wrote: > Hi Django experts. > I am building a Django, DRF based mobile app and I want to have > functionality of up votes and down votes for posts that user will post. > So what I want

Re: DRF | Django | Up votes | Down Votes

2021-06-25 Thread DJANGO DEVELOPER
> Chetan Ganji > +91-900-483-4183 > ganji.che...@gmail.com > http://ryucoder.in > > > On Fri, Jun 25, 2021 at 12:39 PM DJANGO DEVELOPER > wrote: > >> Oba Thank you so much. and let me try it. >> and one more thing that I want to ask that how can I calculate the up

Re: Looking for help installing django

2021-05-06 Thread DJANGO DEVELOPER
can you please explain to me that what are you trying to do? because you have explained nothing in your question about your problem On Thu, May 6, 2021 at 10:26 PM Sharif Mehedi wrote: > Not very understandable, no useful information on your message body, only > there's an exception! > Try to

Re: Looking for help installing django

2021-05-06 Thread DJANGO DEVELOPER
yeah, Sharif is right. follow the official dos. if you still not understanding the flow. come back and ask again. On Thu, May 6, 2021 at 11:24 PM Sharif Mehedi wrote: > I suggest you follow the official documentation page to properly set up > for a django project. > Getting Started:

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
and last settings of my developer app On Wed, Jun 2, 2021 at 6:44 AM DJANGO DEVELOPER wrote: > site url from my app. > > On Wed, Jun 2, 2021 at 6:43 AM DJANGO DEVELOPER > wrote: > >> I have 2 sites in my django admin side. one is localhost:8000 and other >> is 127.0

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
site url from my app. On Wed, Jun 2, 2021 at 6:43 AM DJANGO DEVELOPER wrote: > I have 2 sites in my django admin side. one is localhost:8000 and other is > 127.0.0.1:8000 > > On Wed, Jun 2, 2021 at 1:05 AM Kasper Laudrup > wrote: > >> On 01/06/2021 21.49, DJANGO DE

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
mand in ngrok terminal. > > > On Wed, Jun 2, 2021, 9:23 AM DJANGO DEVELOPER > wrote: > >> let suppose I have installed ngrok, then should have I to run command of >> ngrok.exe in project's directory or anywhere? >> >> On Wed, Jun 2, 2021 at 8:39 AM

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
r host it on Heroku or install ngrok and > try again. > > On Wed, Jun 2, 2021, 7:16 AM DJANGO DEVELOPER > wrote: > >> and last settings of my developer app >> >> On Wed, Jun 2, 2021 at 6:44 AM DJANGO DEVELOPER >> wrote: >> >>> site url from my

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
oh, I had to run the local server first. it is running successfully but giving the same error of urls. On Wed, Jun 2, 2021 at 9:36 AM DJANGO DEVELOPER wrote: > The connection to https://d0f7dea89f18.ngrok.io was successfully tunneled > to your ngrok client, but the client failed to est

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
do have I to add ngrok url in my facebook app that I created to get client secret? On Wed, Jun 2, 2021 at 9:40 AM DJANGO DEVELOPER wrote: > oh, I had to run the local server first. it is running successfully but > giving the same error of urls. > > On Wed, Jun 2, 2021 at 9:

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
yes, I used https. as you can see in the first photo, it is showing that, it is a secure connection On Wed, Jun 2, 2021 at 10:29 AM Omkar Parab wrote: > Try using HTTPS. > > On Wed, Jun 2, 2021, 10:53 AM DJANGO DEVELOPER > wrote: > >> it is working now but givin

Re: Inlined hierarchy models in django admin site.

2021-06-01 Thread DJANGO DEVELOPER
atient_vaccine") >>vaccine = models.ForeignKey(Vaccinet, related_name="vaccinet") >> >> On Tue, Jun 1, 2021 at 1:30 PM DJANGO DEVELOPER >> wrote: >> >>> class Vaccine(models.Model) >>> vaccine = models.ForeignKey(PatientVaccineStatu

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
I have 2 sites in my django admin side. one is localhost:8000 and other is 127.0.0.1:8000 On Wed, Jun 2, 2021 at 1:05 AM Kasper Laudrup wrote: > On 01/06/2021 21.49, DJANGO DEVELOPER wrote: > > I am using django-allauth library and i am following this > > tutorial. >

Re: Inlined hierarchy models in django admin site.

2021-06-01 Thread DJANGO DEVELOPER
I think this the only way to lin different models with eachother. and I would like to hear more about linking the models with each other if there is anyone who can describe it to both of us. On Wed, Jun 2, 2021 at 10:38 AM Ayush Bisht wrote: > thanks, .. it works for me.. but is there any other

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
it is working now but giving the errors attached in the photo. when I click on send anyway, then it shows error of csrf forbidden. I am getting confused again and again. On Wed, Jun 2, 2021 at 10:18 AM Omkar Parab wrote: > Yes. > > On Wed, Jun 2, 2021, 10:12 AM DJANGO DEVELOPER

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-02 Thread DJANGO DEVELOPER
it is based on social-django but I am using django-allauth. On Wed, Jun 2, 2021 at 10:58 AM Omkar Parab wrote: > try this.  > > https://stackoverflow.com/questions/61868629/page-not-found-error-when-adding-facebook-authentication > > On Wed, Jun 2, 2021, 11:12 AM DJANGO DEV

Re: Inlined hierarchy models in django admin site.

2021-06-01 Thread DJANGO DEVELOPER
class Vaccine(models.Model) vaccine = models.ForeignKey(PatientVaccineStatus, related_name="vaccine_status") patient = models.ForeignKey(Patient, related_name="patient") # new line apply this line and your patient model will be linked with Vaccine model On Tue, Jun 1, 2021 at 11:06 AM

Re: use of annotate in django query

2021-06-03 Thread DJANGO DEVELOPER
to display last 30 records you can write your code like this: Customer_Requests.objects.all()[-30] On Thu, Jun 3, 2021 at 10:51 AM Eugene TUYIZERE wrote: > Dear Latit, > > Thank you very much. Now how can I display 30 last records? Regardless of > how many records I may have ! Just the last 30

Re: TypeError: Password must be a string or bytes, got BoundField

2021-06-04 Thread DJANGO DEVELOPER
have you converted your password into hashed? if not then do it by using set_password. On Fri, Jun 4, 2021 at 10:29 PM Kasper Laudrup wrote: > > https://betterprogramming.pub/how-to-ask-questions-about-programming-dcd948fcd2bd > > -- > You received this message because you are subscribed to the

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
I am getting "page not found" error. this error is pretty known to me but I tried all combinations of urls but still getting page not found error. On Tue, Jun 1, 2021 at 7:15 PM Omkar Parab wrote: > What error you're getting? > > On Tue, Jun 1, 2021, 7:37 PM DJANGO DEVELOP

Re: Inlined hierarchy models in django admin site.

2021-06-01 Thread DJANGO DEVELOPER
lated_name="vaccinet") On Tue, Jun 1, 2021 at 1:30 PM DJANGO DEVELOPER wrote: > class Vaccine(models.Model) > vaccine = models.ForeignKey(PatientVaccineStatus, > related_name="vaccine_status") > patient = models.ForeignKey(Patient, related_name="pat

best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
I need to develop a social login functionality for facebook using django allauth and django rest auth. I am struggling from 3 days and I would like to someone who can refer me a good tutorial or any other written guidance. till now I have only implemented some basic code and following this

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
I am using django-allauth library and i am following this tutorial. https://medium.com/geekculture/setup-social-authentication-in-django-rest-framework-1afdb675375f On Tue, Jun 1, 2021 at 10:37 PM Kasper Laudrup wrote: > On 01/06/2021 19.30, DJANGO DEVELOPER wrote: > > I am gett

Re: Role based Authentication

2021-07-07 Thread DJANGO DEVELOPER
f On Wed, Jul 7, 2021 at 7:07 PM LokRaj Kumar Vuppu < lokrajkumarvu...@gmail.com> wrote: > How to assign a role to user when registered into our application. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this

Re: i have a picture field in my model that was not stored properly in django database and i can't retrive that picture

2021-07-07 Thread DJANGO DEVELOPER
you're doing well but it is not the right way o ask the question. you need to describe all of your problem and what you have done to resolve it, then may be someone will be able to help you. On Wed, Jul 7, 2021 at 7:07 PM Hugh Frost wrote: > please check below view Function > > -- > You

Re: No reverse match at /

2021-07-06 Thread DJANGO DEVELOPER
you have to provide id in your urls and in subject.html as well. share you views and url as well. On Tue, Jul 6, 2021 at 6:08 PM Bhanu prasad Ch wrote: > I had a problem in passing special characters in Charfield in DB of Django. > Is that possible to pass special characters in CharField DB? >

Re: Role based Authentication

2021-07-07 Thread DJANGO DEVELOPER
lex.com/tutorial/2016/07/22/how-to-extend-django-user-model.html >> >> On Wed, 7 Jul 2021 at 20:47, Avi shah wrote: >> >>> https://github.com/Avishah123/Multi-user-auth1 >>> >>> On Wed, Jul 7, 2021 at 8:16 PM DJANGO DEVELOPER >>> wrote: >>&

Re: Role based Authentication

2021-07-08 Thread DJANGO DEVELOPER
> reference with my repo) > > On Thu, Jul 8, 2021 at 7:44 AM DJANGO DEVELOPER > wrote: > >> Avi Shah I have just visited your github repo. is there any other code >> where you have performed multi-user sign up with FBV's? >> >> On Thu, Jul 8, 2021 at 4:53

Re: How to insert into multiple tables cascading

2021-06-23 Thread DJANGO DEVELOPER
https://docs.djangoproject.com/en/3.2/topics/forms/modelforms/ read this official doc of django. all is written about modelformset and inlineformset_factory. On Thu, Jun 24, 2021 at 6:35 AM DJANGO DEVELOPER wrote: > have you tried to implement the inlineformset_factory function within y

Re: Partner

2021-06-23 Thread DJANGO DEVELOPER
Hi Erick! I am a python/Django developer and use it for many projects and I would love to have a meeting with you to discuss the projects. Regards: Muhammad Abubakar On Thu, Jun 24, 2021 at 4:12 AM Natalie Smyth wrote: > Dear Erick, > > My name is Natalie, I am a full stack web develo

Re: DRF | Django | Up votes | Down Votes

2021-06-25 Thread DJANGO DEVELOPER
Ryan Thank you so much. I will give it try. and let you know about the results On Fri, Jun 25, 2021 at 8:59 PM Ryan Nowakowski wrote: > On Thu, Jun 24, 2021 at 07:15:09AM -0700, DJANGO DEVELOPER wrote: > > Hi Django experts. > > I am building a Django, DRF based mobile app and

Re: DRF | Django | Up votes | Down Votes

2021-06-25 Thread DJANGO DEVELOPER
Hi Mr Mike. Can you please share you knowledge here to help me? On Sat, Jun 26, 2021 at 6:54 AM Mike Dewhirst wrote: > HE lmbo pop l9m6oo9k > > > > -- > (Unsigned mail from my phone) > > > > Original message ---- > From: DJANGO DEVELOPER

Re: counting the same words within a song added by a user using Django

2021-07-11 Thread DJANGO DEVELOPER
> On Fri, Jul 9, 2021 at 4:57 PM DJANGO DEVELOPER > wrote: > >> sum it is giving me error of TextField is not iterable >> >> On Wed, Jul 7, 2021 at 5:30 AM DJANGO DEVELOPER >> wrote: >> >>> so will it run smoothly? >>> I mean there is no fi

counting the same words within a song added by a user using Django

2021-07-05 Thread DJANGO DEVELOPER
Hi there. I am developing a project based on adding songs to the user's library and to the home page. other users can also purchase the songs like wise people do shopping on eCommerce stores. *Problem:(Question)* The problem that I want to discuss here is that when a user adds a sing through

Re: counting the same words within a song added by a user using Django

2021-07-05 Thread DJANGO DEVELOPER
Lalit Suthar wrote: >> >>> https://www.guru99.com/python-counter-collections-example.html >>> Counter can be helpful for this situation >>> >>> On Mon, 5 Jul 2021 at 17:07, DJANGO DEVELOPER >>> wrote: >>> >>>> Hi there. >>>&

Re: counting the same words within a song added by a user using Django

2021-07-05 Thread DJANGO DEVELOPER
uation > > On Mon, 5 Jul 2021 at 17:07, DJANGO DEVELOPER > wrote: > >> Hi there. >> I am developing a project based on adding songs to the user's library and >> to the home page. >> other users can also purchase the songs like wise people do shopping on

Re: counting the same words within a song added by a user using Django

2021-07-06 Thread DJANGO DEVELOPER
I want the result this way. >>> >>> On Tue, Jul 6, 2021 at 9:21 AM Lalit Suthar >>> wrote: >>> >>>> [image: Screen Shot 2021-07-06 at 9.50.12 AM.png] >>>> Counter works with words also >>>> >>>> nice one Simon C

Django Help | Counting word frequency in Django using dictionary.

2021-07-06 Thread DJANGO DEVELOPER
Hi I am developing a django project and I want to count word frequency at the django admin side. Means a word is repeating in a string should be counted and be saved in 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:

Re: hardware required to use django?

2021-07-06 Thread DJANGO DEVELOPER
you can use linux as well and I am using windows 10 right now and it is working fine with django development. I also used windows8 and it worked. On Wed, Jul 7, 2021 at 6:39 AM Rusty wrote: > We are planning the development using django. > > Could I know the minimum specifications of hardware

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

2021-07-06 Thread DJANGO DEVELOPER
fields/#jsonfield > > On Wed, 7 Jul 2021 at 06:05, DJANGO DEVELOPER > wrote: > >> Hi >> I am developing a django project and I want to count word frequency at >> the django admin side. >> Means a word is repeating in a string should be counted and be saved in >

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)

Re: counting the same words within a song added by a user using Django

2021-07-09 Thread DJANGO DEVELOPER
https://stackoverflow.com/questions/41689274/split-multiple-selections-into-separate-records-in-a-django-model I also want the same result as it is mentioned here in the stackoverflow question On Fri, Jul 9, 2021 at 10:56 AM DJANGO DEVELOPER wrote: > sum it is giving me error of TextFi

Re: counting the same words within a song added by a user using Django

2021-07-09 Thread DJANGO DEVELOPER
sum it is giving me error of TextField is not iterable On Wed, Jul 7, 2021 at 5:30 AM DJANGO DEVELOPER wrote: > so will it run smoothly? > I mean there is no filter function there so will it filter a specific > field and will give me count for the words? > > On Tue, Jul 6, 2021

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

2021-07-09 Thread DJANGO DEVELOPER
hi Sebastian, do you know how can I resolve my problem? I want to count same words in a string. after splitting it On Fri, Jul 9, 2021 at 10:14 PM DJANGO DEVELOPER wrote: > Hi Peter, thanks for your reply. Sorry I have m2m relationship of User > model with Song model and I am using m2m_c

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.

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

2021-07-08 Thread DJANGO DEVELOPER
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)* *def __str__(self):* *return self.string* and *class Song_Words_Count(models.model):* *song =

Re: How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
cker-compose up > These are most like going to be used > > On Mon, Mar 29, 2021, 12:12 DJANGO DEVELOPER > wrote: > >> well, I already know how to containerise a new Django project. but Idk >> how to run an already containerised Django project. that's what is my >> qu

How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
Hi, I have a django project which is already developed by another developer and it is containerised. Now the developer has send the project to me and wants me to do some changes in it? can anyone guide me that how can I run the project using docker again? database is postgresql. -- You

Re: How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
manage.py runserver > > > On Mon, Mar 29, 2021, 12:21 DJANGO DEVELOPER > wrote: > >> I want to ask another question. please ignore my ignorance. >> what if I don't use docker up or run, then will it be possible to run the >> django project? >> >> On Mon, Mar

Re: How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
means deploying it on AWS still will not be affected? On Mon, Mar 29, 2021 at 12:07 PM DJANGO DEVELOPER wrote: > oh great. so it will not affect the containerised project. right? > > On Mon, Mar 29, 2021 at 12:03 PM Kunal Solanke > wrote: > >> Yeah its possible to

Re: How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
I want to ask another question. please ignore my ignorance. what if I don't use docker up or run, then will it be possible to run the django project? On Mon, Mar 29, 2021 at 11:49 AM DJANGO DEVELOPER wrote: > okay, thank you for the suggestion. > > On Mon, Mar 29, 2021 at 11:45 AM Kuna

Re: How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
? On Mon, Mar 29, 2021 at 11:39 AM Kunal Solanke wrote: > Thats really very little info, we don't know what's the state or > configuration present in your codebase > I'd suggest you to search articles with django and docker/docker-compose > > > On Mon, Mar 29, 2021, 12:03 DJANGO

Re: How to run an already built django project with docker?

2021-03-29 Thread DJANGO DEVELOPER
okay, thanks On Mon, Mar 29, 2021 at 3:45 PM Kunal Solanke wrote: > Again depends on deploy startegy and but the actual deploy won't be > affected while you are working on your local machine with code cloned from > some version control > > On Mon, Mar 29, 2021, 12:38 DJANGO DEV

Re: django social login with github issue

2021-03-10 Thread DJANGO DEVELOPER
sorry for improper question. but it is the question on stack over flow with my code. https://stackoverflow.com/questions/66573665/github-social-login-in-django On Thu, Mar 11, 2021 at 3:46 AM Kasper Laudrup wrote: > On 10/03/2021 23.00, DJANGO DEVELOPER wrote: > > Can anyone help me? i

how to do social login with github in python/django

2021-03-10 Thread DJANGO DEVELOPER
I have been working since this afternoon and everything is working fine. when I login via github and github redirects to me on home page after logging in then it is not displaying me the github's username. can anyone help me out right now? it is urgent please. -- You received this message

django social login with github issue

2021-03-10 Thread DJANGO DEVELOPER
hi I need a little help related to social login via github. everything is working fine but when user login through github and github redirects to user to home page then I want to display the github's username on front-end. but my program is not showing the username. Note: When I try

Re: how to do social login with github in python/django

2021-03-10 Thread DJANGO DEVELOPER
please this is the question I have asked on stack overflow. https://stackoverflow.com/questions/66573665/github-social-login-in-django On Thu, Mar 11, 2021 at 3:41 AM boyuanl...@gmail.com wrote: > Can you share your code? > > On Wednesday, March 10, 2021, 02:24:21 PM PST, DJANGO

Re: how to do social login with github in python/django

2021-03-10 Thread DJANGO DEVELOPER
are you able to solve the issue? On Thu, Mar 11, 2021 at 3:45 AM DJANGO DEVELOPER wrote: > please this is the question I have asked on stack overflow. > https://stackoverflow.com/questions/66573665/github-social-login-in-django > > On Thu, Mar 11, 2021 at 3:41 AM boyuanl...@gmail.

Re: how to do social login with github in python/django

2021-03-10 Thread DJANGO DEVELOPER
please help me. On Thu, Mar 11, 2021 at 4:30 AM Kasper Laudrup wrote: > On 10/03/2021 23.59, DJANGO DEVELOPER wrote: > > are you able to solve the issue? > > > > Yes > > -- > You received this message because you are subscribed to the Google Groups > "Djan

Re: how to do social login with github in python/django

2021-03-10 Thread DJANGO DEVELOPER
I am new and learning it. On Thu, Mar 11, 2021 at 4:33 AM DJANGO DEVELOPER wrote: > please help me. > > On Thu, Mar 11, 2021 at 4:30 AM Kasper Laudrup > wrote: > >> On 10/03/2021 23.59, DJANGO DEVELOPER wrote: >> > are you able to solve the issue? >>

UML to Django models

2021-08-25 Thread DJANGO DEVELOPER
Currently, I am working on an inventory management system and I have got some UML diagrams and want to convert those uml diagrams into django models. So can anyone guide me on how to convert those UML diagrams into django models? an example is below of uml diagram -- You received this message

Re: UML to Django models

2021-08-26 Thread DJANGO DEVELOPER
can anyone help me? On Thu, Aug 26, 2021 at 9:32 AM DJANGO DEVELOPER wrote: > Currently, I am working on an inventory management system and I have got > some UML diagrams and want to convert those uml diagrams into django > models. So can anyone guide me on how to convert those UML

Re: UML to Django models

2021-08-26 Thread DJANGO DEVELOPER
. > > HTH. > > On Thursday, 26 August 2021 at 10:28:23 UTC+2 abubak...@gmail.com wrote: > >> can anyone help me? >> >> On Thu, Aug 26, 2021 at 9:32 AM DJANGO DEVELOPER >> wrote: >> >>> Currently, I am working on an inventory management system and

Re: Error: NoReverseMatch at

2021-08-16 Thread DJANGO DEVELOPER
okay add a url. first of all import the view into urls.py file and make a path. On Mon, Aug 16, 2021 at 5:32 PM 'Rahul Chauhan' via Django users < django-users@googlegroups.com> wrote: > Here is how the the project's url.py looks like. Not made any changes to > it. > > [image: dj_4.jpg] > >

Re: Error: NoReverseMatch at

2021-08-16 Thread DJANGO DEVELOPER
show me your django app url and views as well. On Tue, Aug 17, 2021 at 1:10 AM DJANGO DEVELOPER wrote: > okay add a url. first of all import the view into urls.py file and make a > path. > > On Mon, Aug 16, 2021 at 5:32 PM 'Rahul Chauhan' via Django users < > django-user

Re: Wish list functionality in products listing page.

2021-07-29 Thread DJANGO DEVELOPER
I think you have to save the products in your wishlist feature just by doing the same way as we do in saving things in django On Thu, Jul 29, 2021 at 10:07 AM Salima Begum wrote: > Hi all, > In my project I want to implement wishlist functionality in products > listing pages. > Is there any

Re: Can anyone help me

2021-07-28 Thread DJANGO DEVELOPER
Hi nagaraju, if you're new to django then you should go for a CRUD functionality to understand django. you can also build a blog post web app then you will be able to build this form by yourself. well if you don't want to build other ideas and want to work on this form then you should search for

Re: Keycloak & Django Setup Error - "UNIQUE constraint failed: auth_user.username" & usernames are being hashed

2021-10-05 Thread DJANGO DEVELOPER
you're facing this error because django receives nique usernames. so you are not allowed to create another username with the same username. On Wed, Oct 6, 2021 at 1:36 AM Ammon Quackenbush wrote: > > I am setting up keycloak for a django project and this is the error I > receive: > > >

Re: A server error occurred. Please contact the administrator.

2021-09-27 Thread DJANGO DEVELOPER
are you facing an internal server error(500) On Mon, Sep 27, 2021 at 8:29 PM Kasper Laudrup wrote: > On 27/09/2021 12.03, Ardhendu Sekhar Sahoo wrote: > > I got this error ,I need your help to fix this.so kindly tell me how can > > I fix it. > > Have you tried contacting the administrator like

Re: A server error occurred. Please contact the administrator.

2021-09-27 Thread DJANGO DEVELOPER
you just don't need to be rude if I didn't get it. On Mon, Sep 27, 2021 at 9:14 PM Kasper Laudrup wrote: > On 27/09/2021 17.40, DJANGO DEVELOPER wrote: > > are you facing an internal server error(500) > > > > No, but thanks for asking. > > I'm just writing a sill

Re: UML to Django models

2021-08-26 Thread DJANGO DEVELOPER
_length=255) >>> date_introduction = models.DateField() >>> comment = models.TextField() >>> >>> #etc. >>> >>> You'll need to use ForeignKey fields to link related tables, of course. >>> >>> HTH. >>> >>>

AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
I am working on a django based project in which I have integrated ML trained models to check if a https url is legitimate or not. for this I need javascript or ajax to call a rest api for my form in which I want to send a post request so that I can check if a https url is legitimate or not.

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
https://meet.google.com/pns-vbmz-sys On Wed, Nov 24, 2021 at 12:08 AM DJANGO DEVELOPER wrote: > okay > > > On Wed, Nov 24, 2021 at 12:04 AM Duncan Santiago < > duncansantiag...@gmail.com> wrote: > >> let's try google meet. >> >> On Tue, 23 Nov

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
okay On Wed, Nov 24, 2021 at 12:04 AM Duncan Santiago wrote: > let's try google meet. > > On Tue, 23 Nov 2021 at 11:39, DJANGO DEVELOPER > wrote: > >> can I have you on anydesk or any meeting tool? >> >> On Tue, Nov 23, 2021 at 11:31 PM Duncan Santiago <

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
}); > }; > })(); > > On Tue, 23 Nov 2021 at 10:34, Duncan Santiago > wrote: > >> do a demo, enter the URL on the text area and click on the post button. >> Then send me the logs on the terminal running Django and also open the >> console and se

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
can I have you on anydesk or any meeting tool? On Tue, Nov 23, 2021 at 11:31 PM Duncan Santiago wrote: > send me your code then, > or GitHub repo handle. > > On Tue, 23 Nov 2021 at 11:27, DJANGO DEVELOPER > wrote: > >> sorry if you get offended because I need a solu

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
and javascript. so how can I achieve it? On Tue, Nov 23, 2021 at 10:16 PM Duncan Santiago wrote: > hello, am not sure what the question is. Kindly elaborate. > > On Tue, 23 Nov 2021 at 09:19, DJANGO DEVELOPER > wrote: > >> I am working on a django based project in which

  1   2   >