Re: final project in django - help

2023-08-16 Thread Migui Galan
im glad to help, whats the issue you are facing? you can send me a gmeet link for the meeting On Wed, Aug 16, 2023 at 11:31 PM kipkoech chesir wrote: > yes, we can, just clarify issues and problems. > > > On Wednesday, August 9, 2023 at 7:23:27 PM UTC+3 ivan harold wrote: > >> what help do you n

Re: final project in django - help

2023-08-16 Thread kipkoech chesir
yes, we can, just clarify issues and problems. On Wednesday, August 9, 2023 at 7:23:27 PM UTC+3 ivan harold wrote: > what help do you need? > Can you give any specifics so we can understand? > > On Sunday, July 16, 2023 at 10:40:09 PM UTC+8 Jun Say wrote: > >> >> >> On Sun, Jul 16, 2023 at 9:32 

Re: final project in django - help

2023-07-16 Thread Jun Say
On Sun, Jul 16, 2023 at 9:32 PM Jun Say wrote: > Let me try. > > On Sun, Jul 16, 2023 at 6:28 AM Brian Carey wrote: > >> A little more information please. What can't you do and what errors do >> you get? >> >> Get BlueMail for Android >> On Jul 16, 2023, at 03:47, Alexandru

Re: final project in django - help

2023-07-16 Thread Jun Say
Let me try. On Sun, Jul 16, 2023 at 6:28 AM Brian Carey wrote: > A little more information please. What can't you do and what errors do you > get? > > Get BlueMail for Android > On Jul 16, 2023, at 03:47, Alexandru - Gabriel Ionicescu < > ionicescu.alexandrugabr...@gmail.co

Re: final project in django - help

2023-07-16 Thread Brian Carey
A little more information please. What can't you do and what errors do you get? ⁣Get BlueMail for Android ​ On Jul 16, 2023, 03:47, at 03:47, Alexandru - Gabriel Ionicescu wrote: >Hello, > >who can help me with the final project in django? in a week I have to >hand >it over and I got into troub

final project in django - help

2023-07-16 Thread Alexandru - Gabriel Ionicescu
Hello, who can help me with the final project in django? in a week I have to hand it over and I got into trouble with it. I can't access github. Please help me. Tnx, Alex -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: Django help needed URGENTLY!!!!

2021-11-30 Thread Kasper Laudrup
On 30/11/2021 02.25, Kay TV wrote: Hi everyone. First of all, instead of a generic subject and screaming things like urgent. Try to write a more descriptive subject. It will increase the chances of someone being willing to help you. > Can anyone please help. I have a Django project which i

Django help needed URGENTLY!!!!

2021-11-29 Thread Kay TV
Hi everyone. Can anyone please help. I have a Django project which i want to distribute as a Windows executable file. What do I do 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

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
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 = models

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_changes s

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 Peter, thanks for your reply. Sorry I have m2m relationship of User model with Song model and I am using m2m_changes signal for it but still not giving me the desired output. On Fri, Jul 9, 2021 at 9:20 PM Sebastian Jung wrote: > Hello Peter, > > ich would make it with a signal. > > Here a an

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

2021-07-09 Thread Sebastian Jung
Hello Peter, ich would make it with a signal. Here a another example to use a post save signal: from django.db.models.signals import post_savefrom django.dispatch import receiver class TransactionDetail(models.Model): product = models.ForeignKey(Product) # method for updating@receiver(post_s

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

2021-07-09 Thread Tech Cue
*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* > *class Song_Words_Count(models.model):* > *song = models.ForeignKey(user, on_del

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
Overwrite 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 know if that String wa

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)* > *def __st

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 = models

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

2021-07-07 Thread Lalit Suthar
you can try moving to postgres if possible On Wed, 7 Jul 2021 at 10:28, DJANGO DEVELOPER wrote: > I am using sqlite3. so only needs to store the data in django > admin/database but in the form of dictionary or in the form of counted > words. > > On Wed, Jul 7, 2021 at 9:09 AM Lalit Suthar > wro

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

2021-07-06 Thread DJANGO DEVELOPER
I am using sqlite3. so only needs to store the data in django admin/database but in the form of dictionary or in the form of counted words. On Wed, Jul 7, 2021 at 9:09 AM Lalit Suthar wrote: > you can use postgres JsonField > https://docs.djangoproject.com/en/3.2/ref/contrib/postgres/fields/#jso

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

2021-07-06 Thread Lalit Suthar
you can use postgres JsonField https://docs.djangoproject.com/en/3.2/ref/contrib/postgres/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

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: any_s

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: I'm new to this django help me out

2020-05-19 Thread meera gangani
You can watch django tutorial series on youtube otherwise you can also apply to the courses on coursera or udemy On Tuesday, May 5, 2020 at 10:55:48 PM UTC+5:30, sree lekha wrote: > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscri

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

2020-05-15 Thread Bighnesh Pradhan
use snipping tool On Fri, May 15, 2020 at 9:47 PM Sunday Iyanu Ajayi wrote: > You can host the project on a server and share the url > > Or can you enlighten me on what you mean by output?- The Web app ? > *AJAYI Sunday * > (+234) 806 771 5394 > *sunnexaj...@gmail.com * > > > > On Fri, May 15,

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

2020-05-15 Thread Sunday Iyanu Ajayi
You can host the project on a server and share the url Or can you enlighten me on what you mean by output?- The Web app ? *AJAYI Sunday * (+234) 806 771 5394 *sunnexaj...@gmail.com * On Fri, May 15, 2020 at 3:15 PM sree lekha wrote: > how can i share the output of a django program to others

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

2020-05-15 Thread sree lekha
how can i share the output of a django program to others -- 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: I'm new to this django help me out

2020-05-06 Thread Robert Rajendra
state your question On Tue, 5 May 2020 at 23:02, Sherif Adigun wrote: > what is your question? > > On Tuesday, May 5, 2020 at 6:25:48 PM UTC+1, sree lekha wrote: >> >> -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from th

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

2020-05-05 Thread Sherif Adigun
what is your question? On Tuesday, May 5, 2020 at 6:25:48 PM UTC+1, sree lekha wrote: > > -- 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.

I'm new to this django help me out

2020-05-05 Thread sree lekha
-- 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 on the web visit https://groups.google.com/d/m

Re: How to display file&folder tree using Django. Help, please!

2019-02-10 Thread Derek
There are a number of custom Django apps that can do something like, for example: https://github.com/IMGIITRoorkee/django-filemanager (or look here https://djangopackages.org/grids/g/file-managers/ for more) On Friday, 8 February 2019 14:24:01 UTC+2, Yura wrote: > > Hello everyone! I really ne

Re: How to display file&folder tree using Django. Help, please!

2019-02-08 Thread Mario R. Osorio
If you're just looking into just presenting trees, you might want to check How TO - Tree View (https://www.w3schools.com/howto/howto_js_treeview.asp) or Bootstrap Tree View (https://github.com/jonmiles/bootstrap-treeview, http://jonmiles.github.io/bootstrap-treeview/) If you are looking for a

How to display file&folder tree using Django. Help, please!

2019-02-08 Thread Yura
Hello everyone! I really need help. I’ve got SQL table which contains exhaustive files and folders information and I need to show tree of those files on a website. But not only show, it’s supposed to be interactive, so that a user can scroll, open folders and mark any of the items. I think it m

Re: No module named django help please

2018-03-27 Thread Utpal Brahma
try : pip install django (if pip is installed) try : pip3 install django (if pip3 is installed) -- 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+unsu

Re: No module named django help please

2018-03-27 Thread Marsel Tzatzo
Try pip install django Marsel Tzatzo, Mobile Software Engineer I welcome VSRE emails. Learn more at http://vsre.info/ > On 27 Mar 2018, at 12:48, MFM ™ wrote: > > No module named django someone help me > > -- > You received this mess

No module named django help please

2018-03-27 Thread MFM ™
No module named django someone help me -- 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 post to this group, send em

Re: Need Django Help Again.

2015-07-22 Thread Bill Freeman
Unless it has changed, the tutorial at docs.djangoproject.com shows creation of an app, use of templates, forms, etc. All the building blocks for the back end (which is what django is). Those are the skills that have been the base of several sites that I've built. If your site wants to have othe

Re: Need Django Help Again.

2015-07-22 Thread Steve Burrus
say do yoiu know of a handy series of tutorials I can use to actually do something in Django beyond merely connecting to the server and maybe configuring the admin? I am getting tired of just connecting to the server and then "calling it a day" if you know what I mean. On Wed, Jul 22, 2015 at 1:

Re: Need Django Help Again.

2015-07-22 Thread Bill Freeman
That's actually a virtualenv mistake, rather than a django mistake. Whenever things don't behave in a VE try "pip freeze" to see if things are as you expect. On Wed, Jul 22, 2015 at 1:16 PM, Steve Burrus wrote: > *Okay it's a case of "my bad". I got it gpoing. I had just forgotten to do > this c

Re: Need Django Help Again.

2015-07-22 Thread Steve Burrus
*Okay it's a case of "my bad". I got it gpoing. I had just forgotten to do this command : "pip install django" in the "burrus" virtual environment inst ance! I still have the shakiest knowledge of django in general so little mistakes like this I am gonna have a little while longer.* *On Wed, Jul

Re: Need Django Help Again.

2015-07-22 Thread Bill Freeman
I presume that you have actually checked for a django-admin.py file in the Scripts directory? On Wed, Jul 22, 2015 at 12:58 PM, Steve Burrus wrote: > > *well I haVE tried both this "python .\Scripts\django-admin.py > startproject me" and Bill's suggestion opf "python django-admin.py > startproj

Re: Need Django Help Again.

2015-07-22 Thread Steve Burrus
*well I haVE tried both this "python .\Scripts\django-admin.py startproject me" and Bill's suggestion opf "python django-admin.py startproject me" but both haVE failed! I'll try Bill's other suggestion of the forward slashes but I doubt it will work.* *On Wed, Jul 22, 2015 at 11:51 AM, Steve Bur

Re: Need Django Help Again.

2015-07-22 Thread Steve Burrus
*well tom tjhanx for your attempted help but it still didn't work after I took care of that space after "\Scripts\"! here is my error message now : "python: can't open file '.\Scripts\django-admin.py': [Errno 2] No such file or directory".* *On Wed, Jul 22, 2015 at 11:34 AM, Tom Lockhart > wrot

Re: Need Django Help Again.

2015-07-22 Thread Bill Freeman
Try no space between ".\Scripts\" and "django-admin.py" You could also try forward slashes on the django-admin.py line (I think that you need the back slashes on the activate line). And I don't think that you need the ".\" on the django-admin.py line. And, if that activate is activating a virtua

Re: Need Django Help Again.

2015-07-22 Thread Tom Lockhart
> On Jul 22, 2015, at 09:11, Steve Burrus wrote: > > I find myself in ned of help yet again w. django. Just to say parenthetically > I have had this problem before. just what am I doing wrong with the command > "python .\Scripts\ django-admin.py startproject me" to consistently get this > err

Need Django Help Again.

2015-07-22 Thread Steve Burrus
*I find myself in ned of help yet again w. django. Just to say parenthetically I have had this problem before. just what am I doing wrong with the command "**python .\Scripts\ django-admin.py startproject me" to consistently get this error message! Thanx to anyone who helps me. * *"C:\Users\S

Re: Desperately need Django help!

2015-01-21 Thread Collin Anderson
Hi, A new CSRF token gets generated after you log in, so you'll need to ask django for the new one, or simply ready the new value from document.cookie. Collin On Monday, January 19, 2015 at 3:08:34 AM UTC-5, Neil Asnani wrote: > > Hi, I am trying to build a single page, restful application to t

Re: Desperately need Django help!

2015-01-19 Thread Vijay Khemlani
For single page applications I highly recommend this tutorial, it answers the typical questions regarding single page apps. https://thinkster.io/brewer/angular-django-tutorial/ (assuming you are using angularJS) On Mon, Jan 19, 2015 at 5:08 AM, wrote: > Hi, I am trying to build a single page,

Desperately need Django help!

2015-01-19 Thread neil . asnani
Hi, I am trying to build a single page, restful application to track expenses that allows users to sign up, log in, and edit / delete / filter expenses, all on a single page. I am very new to Django, and all other web technologies and this app is making my head spin. I have been working on th

Re: Django help required with non foreign key relations

2012-04-23 Thread akaariai
On Apr 23, 8:15 am, Aditya Sriram M wrote: > Ohh this looks little promising.. > > However, > >    1. I need a few cols of table1 and few from table 2 to be displayed. How >    can we achieve that at the .filter() level? and >    2. At the view level like using the list_display () for displaying t

Re: Django help required with non foreign key relations

2012-04-22 Thread Aditya Sriram M
Ohh this looks little promising.. However, 1. I need a few cols of table1 and few from table 2 to be displayed. How can we achieve that at the .filter() level? and 2. At the view level like using the list_display () for displaying them in the Admin interface On Sunday, 22 April 2

Re: Django help required with non foreign key relations

2012-04-22 Thread akaariai
On Apr 22, 1:31 pm, Aditya Sriram M wrote: > File myapp/models.py has this sample code.. > > from django.db import models > > # model for 'user' table in database oracle_dbuser1:user > class User(models.Model): >     . . . >     customerid = models.BigIntegerField() > > # model for 'customer' tabl

Django help required with non foreign key relations

2012-04-22 Thread Aditya Sriram M
File myapp/models.py has this sample code.. from django.db import models # model for 'user' table in database oracle_dbuser1:user class User(models.Model): . . . customerid = models.BigIntegerField() # model for 'customer' table in database oracle_dbuser2:customer # Note that there is

Re: DateTime in Django (Help)

2011-05-09 Thread Kenny Meyer
Oh! I have found a precious discussion on SO. http://stackoverflow.com/questions/38601/using-django-time-date-widgets-in-custom-form I think you might like the highest-voted solution. Kenny On Mon, May 9, 2011 at 9:28 PM, Kenny Meyer wrote: > s/sting/string > > On Mon, May 9, 2011 at 9:27 PM,

Re: DateTime in Django (Help)

2011-05-09 Thread Kenny Meyer
s/sting/string On Mon, May 9, 2011 at 9:27 PM, Kenny Meyer wrote: >> However, I keep getting validating errors with datetime, probably is >> how I am entering the data. I have also tried the SplitDateTimeWidget >> I am getting the same >> validation error > These are the valid input formats: > ht

Re: DateTime in Django (Help)

2011-05-09 Thread Kenny Meyer
> However, I keep getting validating errors with datetime, probably is > how I am entering the data. I have also tried the SplitDateTimeWidget > I am getting the same > validation error These are the valid input formats: http://docs.djangoproject.com/en/dev/ref/forms/fields/#django.forms.DateTimeFi

Re: DateTime in Django (Help)

2011-05-09 Thread Kevin Miller
Thanks so much for your response. I have done all that and I have model forms working for other models. However, I keep getting validating errors with datetime, probably is how I am entering the data. I have also tried the SplitDateTimeWidget I am getting the same validation error. I have tried man

Re: DateTime in Django (Help)

2011-05-09 Thread Kenny Meyer
On Mon, May 9, 2011 at 10:55 AM, Kevin Miller wrote: > Dear all, > > I am new to django but is in the process of building my first website. I have > been ok for a while as I am not new to programming in python. However, I have > one problem that I cannot figure out the proper way to do it. I want

DateTime in Django (Help)

2011-05-09 Thread Kevin Miller
Dear all, I am new to django but is in the process of building my first website. I have been ok for a while as I am not new to programming in python. However, I have one problem that I cannot figure out the proper way to do it. I want to use ModelForm but have a DateTime Field. I can do it with

Re: django help

2011-04-30 Thread Andres Lucena
El 30/04/11 14:56, Marcos Moyano escribió: > Read the static-files docs > Also read this document: http://www.catb.org/~esr/faqs/smart-questions.html > On Sat, Apr 30, 2011 at 4:14 AM, Sunil Chugh > wrote: > > how can i used static_root > > -- > Yo

Re: django help

2011-04-30 Thread Marcos Moyano
Read the static-files docs On Sat, Apr 30, 2011 at 4:14 AM, Sunil Chugh wrote: > how can i used static_root > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to django-users@googlegroups.com. > To unsubs

django help

2011-04-30 Thread Sunil Chugh
how can i used static_root -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more opt

Re: Best forum/group for Django Help

2011-02-11 Thread Mike Seidle
On Thursday, February 10, 2011 03:40:24 am SimpleDimple wrote: > Not a prank, it was just what I thought..., it is always better to ask > than assume...thanks for confirmation that this is the best one > around. You might want to check your settings for the group - there are literally hundred

Re: Best forum/group for Django Help

2011-02-11 Thread SimpleDimple
um/group for Django help ?  I > > thought this is the one but I don't see much activity here despite of > > the fact that there are 19000+ members...where do you go for > > discussing your django issues with people ? > > No doubt I'm biased, but IMO StackOve

Re: Best forum/group for Django Help

2011-02-10 Thread Kenneth Gonsalves
On Thu, 2011-02-10 at 02:20 -0800, Daniel Roseman wrote: > On Wednesday, February 9, 2011 9:06:54 PM UTC, SimpleDimple wrote: > > > > Guys, Need to know which is the best forum/group for Django help ? > I > > thought this is the one but I don't see much activity he

Re: Best forum/group for Django Help

2011-02-10 Thread Daniel Roseman
On Wednesday, February 9, 2011 9:06:54 PM UTC, SimpleDimple wrote: > > Guys, Need to know which is the best forum/group for Django help ? I > thought this is the one but I don't see much activity here despite of > the fact that there are 19000+ members...where do you go for

Re: Best forum/group for Django Help

2011-02-10 Thread SimpleDimple
group for Django help ?  I > > thought this is the one but I don't see much activity here despite of > > the fact that there are 19000+ members...where do you go for > > discussing your django issues with people ? > > Is this a prank? This list is extremely active. &g

Re: Best forum/group for Django Help

2011-02-09 Thread Shawn Milochik
On 02/09/2011 04:06 PM, SimpleDimple wrote: Guys, Need to know which is the best forum/group for Django help ? I thought this is the one but I don't see much activity here despite of the fact that there are 19000+ members...where do you go for discussing your django issues with people ?

Best forum/group for Django Help

2011-02-09 Thread SimpleDimple
Guys, Need to know which is the best forum/group for Django help ? I thought this is the one but I don't see much activity here despite of the fact that there are 19000+ members...where do you go for discussing your django issues with people ? -- You received this message because yo