Re: django 1.4 : gunicorn can't find static files. settings option

2014-01-05 Thread Mahdi Mazaheri
Hi Huseyin, I have the same problem as Bo but this again did not solve my problem. This works with django webserver (runserver) but not with gunicorn. Any Ideas? Thanks in advance Mahdi On Wednesday, May 16, 2012 10:38:39 AM UTC+4:30, huseyin yilmaz wrote: > > For development, you could add thi

Re: django 1.4 : gunicorn can't find static files. settings option

2014-01-05 Thread Denis Cornehl
Hi, if you don’t have a web server available (for example on some PaaS like Heroku), you can do two things for production-ready static file serving: - use an external service like Amazon S3 (with the help of django-storages) - use dj-static, which uses an WSGI middleware to serve your static f

wait message

2014-01-05 Thread fabricio
I am needing to display a wait message while processing perform some process on the server anyone could 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

Re: wait message

2014-01-05 Thread Denis Chernoshchekov
Try using Ajax. 2014/1/5 fabricio > I am needing to display a wait message while processing perform some > process on the server anyone could help me > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and s

Re: Can't Install on Windows 8.1

2014-01-05 Thread Malik Rumi
This is just an update to all of you, and to anyone coming after me with similar problems. No, I did not get what I wanted for Christmas. It turns out distribute has been deprecated, and I should have gotten the "new" setuptools instead. It seems the brilliant minds behind distribute set up a '

Re: wait message

2014-01-05 Thread fabricio
But my process is all done in an application that I use to report and give fpdf when I click the print button the process is all done there -- 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: wait message

2014-01-05 Thread Larry Martell
On Sun, Jan 5, 2014 at 7:49 AM, fabricio wrote: > I am needing to display a wait message while processing perform some process > on the server anyone could help me You could create the wait message in a class like this: ... loading Then at the beginning of your template do: $('.loadMsg').sho

Re: How to approach this problem?

2014-01-05 Thread César García Tapia
Could anybody help me with this problem, please? I know it's not very polite to ask twice, but I'm stuck on this, and I really need to solve it. Excuse me for the insistence. C. El viernes, 3 de enero de 2014 01:48:23 UTC+1, César García Tapia escribió: > > I'm trying to solve a problem, but I

wait processing

2014-01-05 Thread pointmuriae castro
I am needing to display a wait message while processing perform some process on the server anyone could 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

multiple select in form wizard

2014-01-05 Thread Prithviraj Billa
Hello, I'm using form wizard in my application.One of my forms contains modelmultiplechoicefield, after i submit all the forms it gives me an error in the form with modelmultiplechoicefield informing that to "please enter the list of values". Its not saving a list of values instead, its saving

test driven development and mixin for views

2014-01-05 Thread Sven
Hi Folks, i recently wrote some small mixins that are intented to be attached to CBV like ListView, UpdateView, DetailView or even CreateView. The aim is to give users only access to their data. Their in terms of ownership. As an Example you have a Post model were a field called owner is a Fore

Django Weekend Cardiff - last call for talks and tutorials

2014-01-05 Thread Daniele Procida
The final deadline for porposals for talks and tutorials is the end of 7th January (GMT). All Python/Django-related proposals are welcome. We especially want proposals from: * people who are minorities in the field * first-time speakers (in other w

Re: How to approach this problem?

2014-01-05 Thread Avraham Serour
it looks like you need nested inlines, which I believe is not possible yet ( https://code.djangoproject.com/ticket/9025) in the meantime you can try using this ( https://github.com/Soaa-/django-nested-inlines) On Sun, Jan 5, 2014 at 5:07 PM, César García Tapia wrote: > Could anybody help me with

Re: wait processing

2014-01-05 Thread Erik Cederstrand
Den 05/01/2014 kl. 13.44 skrev pointmuriae castro : > I am needing to display a wait message while processing perform some process > on the server anyone could help me A simple option is to run your processing via Celery or some other task queue. You then store the job status somewhere in your

Django manage.py returns ValueError: zero length field name in format

2014-01-05 Thread Carlos Quiros
Hi, I am trying to run a Django application in Python 2.6.6 Django==1.5.5 . But when I try to run *python manage.py* I get: *Traceback (most recent call last): File "manage.py", line 12, in print('Your environment is:"{}"'.format(os.environ['DJANGO_SETTINGS_MODULE'])) ValueError: zero

Re: Django manage.py returns ValueError: zero length field name in format

2014-01-05 Thread Mario Gudelj
Sounds like you need 2.7 or at least 3. Check out this answer on SO http://stackoverflow.com/questions/10054122/valueerror-zero-length-field-name-in-format-python Can't have print('Your environment is:"{}"'.format(os.environ['DJANGO_SETTINGS_MODULE'])) Should be *print('Your environment is:"{0}"'