Re: Okay so has nothing to do with programming, and everything to do with the future of Humanity

2015-07-19 Thread Brandon Keith Biggs
Hello, I totally agree with you, there should be some way to bridge new developers into django from python and focus on getting a web presence. Have you taken a look at Mezzanine? It is a very nice CMS that has all the elements to be a perfect bridge into django and the only problems are the

Re: Try Django 1.8 Tutorial 37 on Youtube - Bootstrap Design Falls Apart In Production

2015-07-19 Thread Mario Gudelj
Your static assets aren't loading. Normally in production you'd setup nginx or apache to do this job. Have you done that? On 17 Jul 2015 7:24 am, "Chris Nowak" wrote: > I'm following this Youtube tutorial as I'm learning Django, and around the > 11 minute mark, after the

Okay so has nothing to do with programming, and everything to do with the future of Humanity

2015-07-19 Thread JJ Zolper
I just want to put it out there that even if I have received a lot of negative vibes from the posts I have made, my only intention is that I aim to bring about a positive future for Django but also those who want to change the world with their website applications. Maybe some of the posts I

Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Avraham Serour
your're right, sorry, I missed that On Sun, Jul 19, 2015 at 7:03 PM, Ilan wrote: > It states specifically that you need a running Redis server in the > installation guide both on github and rtd. It just doesn't list it as a > python requirement.. > I didn't realize this would

Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Ilan
It states specifically that you need a running Redis server in the installation guide both on github and rtd. It just doesn't list it as a python requirement.. I didn't realize this would throw people off. Thanks for pointing this out. On Sunday, July 19, 2015 at 5:58:22 PM UTC+2, Avraham

Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Avraham Serour
that doesn't make any sense to me, I understand that a dependency is something that I must install in order to use your library, for example django. If I have a non django python project, I would need to install django before using django q. a feature would something like psutil or hredis, or

Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Ilan Steemers
both On Sun, Jul 19, 2015 at 5:48 PM, Avraham Serour wrote: > I don't get it, is redis a feature or dependency? > > On Sun, Jul 19, 2015 at 4:58 PM, Ilan wrote: > >> Thanks. I'm currently working on the 0.4.0 release that will add result >> groups. Hoping

Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Avraham Serour
I don't get it, is redis a feature or dependency? On Sun, Jul 19, 2015 at 4:58 PM, Ilan wrote: > Thanks. I'm currently working on the 0.4.0 release that will add result > groups. Hoping to release it in a few hours. > > On Sunday, July 19, 2015 at 3:55:47 PM UTC+2, Derek

Re: Help me develop a Job Tracker (?)

2015-07-19 Thread Softeisbieger
I could fix part of my problem: The formtools formwizard doc states for the us of modelformsets: 'WizardView supports ModelForms and ModelFormSets

Re: Name error ,not defined problem

2015-07-19 Thread Scot Hacker
Your URL definition is calling a module that hasn't been imported. At the top of your urls.py, add: from newsletter import views In the URL definition, do: url(r'^$', views.home, name='home'), ./s > > -- You received this message because you are subscribed to the Google Groups "Django

Re: Name error ,not defined problem

2015-07-19 Thread Diego Matar
Didi you add* 'newsletter' *to your INSTALLED_APPS in settings.py? Em domingo, 19 de julho de 2015 07:16:52 UTC-3, Tara gurung escreveu: > > > > > This is my application structure with

Re: Regarding Learning Django with collaboration

2015-07-19 Thread Ramzi Alsallaq
Me too. I have been learning mostly Python and a little Django for more than a year. My focus is in using Python as a replacement to Matlab in conducting numerical analyses and simulation. Regards, Ramzi On Jul 19, 2015 9:55 AM, "Derek Pauley" wrote: > I am interested. I am

Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Ilan
Thanks. I'm currently working on the 0.4.0 release that will add result groups. Hoping to release it in a few hours. On Sunday, July 19, 2015 at 3:55:47 PM UTC+2, Derek Pauley wrote: > > Looks very nice. > > On Friday, July 17, 2015 at 1:06:20 PM UTC-5, Ilan wrote: >> >> About a month ago I

Re: Try Django 1.8 Tutorial 37 on Youtube - Bootstrap Design Falls Apart In Production

2015-07-19 Thread Derek Pauley
Have you reached out to the author of the tutorial? What browser are you using? Were you using the Django debug toolbar? On Thursday, July 16, 2015 at 4:24:40 PM UTC-5, Chris Nowak wrote: > > I'm following this Youtube tutorial as I'm learning Django, and around the > 11 minute mark, after the

Re: A native Django multiprocessing task queue - feedback wanted

2015-07-19 Thread Derek Pauley
Looks very nice. On Friday, July 17, 2015 at 1:06:20 PM UTC-5, Ilan wrote: > > About a month ago I started working on a multiprocessing task queue for > Django. It is not supposed to be a Celery beater, but a simpler Django > integrated alternative with similar performance. > This is my first

Re: Regarding Learning Django with collaboration

2015-07-19 Thread Derek Pauley
I am interested. I am a Web Platform Administrator. I use Python everyday. I have been using Django and Flask only for a short while. However I have years of Java and Ruby development experience. I can help with things on the OPS side and can write code. I am interested in Content Management

Re: Regarding Learning Django with collaboration

2015-07-19 Thread richard kappler
I'd be interested. On Jul 19, 2015 6:16 AM, "Tara gurung" wrote: > > YES absolutely > On Friday, 17 July 2015 13:22:13 UTC+5:45, How to configure pgAdminIII > wrote: >> >> Hi People, >> >> Are there any people who are learning Python and even planning to >> learn Django

Re: Regarding Learning Django with collaboration

2015-07-19 Thread Tara gurung
YES absolutely On Friday, 17 July 2015 13:22:13 UTC+5:45, How to configure pgAdminIII wrote: > > Hi People, > > Are there any people who are learning Python and even planning to > learn Django and keen interested to form a group as such towards this > learning curve > > I am interested to

Name error ,not defined problem

2015-07-19 Thread Tara gurung
This is my application structure with newsletter application inside *SRC* project. *Hellow am newbie to django framework and need some help to fix it* *urls.py* has this added