Re: Django session question.

2013-12-25 Thread Daniel Roseman
Did you Google "Django sessions" before posting? Or even look on the Django documentation index for any page entitled "sessions", such as this one: https://docs.djangoproject.com/en/1.6/topics/http/sessions/ ? -- DR. On Tuesday, 24 December 2013 22:30:08 UTC, Chen Xu wrote: > > I am working on a

django-pybbm poll

2013-12-25 Thread Hervé Edorh
hi, I am using pybbm app like forum in my django application.When i want to create new topic, it asks me to write in poll form, i want to remove poll form. how can i remove it? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe f

Re: Need Direction for Web App

2013-12-25 Thread Tom Lockhart
On 2013-12-24, at 4:55 PM, zobcl...@gmail.com wrote: > I would like to create a web app / interface to manipulate and maintain my > server's dhcpd.conf file. > Background in Short: > I was asked a few years back to build a wifi network for approximately 500 > users with unlimited devices. With

Re: Can't Install on Windows 8.1

2013-12-25 Thread Malik Rumi
Ok, everything went smoothly and beautifully as promised. I got successful install messages for pip, distribute, virtualenv and django. So first, thank you both very much. However, I seem to be stuck again. I am not sure how to get from my new virtualenv to django, and windows seems just as co

referencing models before syncdb

2013-12-25 Thread vinayak11118
I have an actions.py file which defines custom actions for the admin page for one of my models. It uses an intermediary page (like the default delete action) and hence has a corresponding form which is also declared in the same file. For some reason, I had drop by database (development) and now

Re: Need Direction for Web App

2013-12-25 Thread zobcloud
Thank you for your response. I will start where you suggested. On Tuesday, December 24, 2013 7:55:37 PM UTC-5, zobc...@gmail.com wrote: > > I would like to create a web app / interface to manipulate and maintain my > server's dhcpd.conf file. > *Background in Short:* > I was asked a few years ba

Django ModelForms - testing forms with model that have M2M inline instance using an intermediate model

2013-12-25 Thread luke lukes
I have invoice/estimates django app, I need to write tests for it. Since I'm a beginner with this, testing forms results hard for me. This is the code - for models, form and admin: # MODELS class Invoice(models.Model): subject = models.ForeignKey( Subject, verbose_name=

Re: Can't Install on Windows 8.1

2013-12-25 Thread Timothy W. Cook
It has been 4 hours so just so you don't think you are being ignored. :-) Basically, this is why I haven't used Windows since Win98. It wants to take control of everything and guess at what I want. I wish you luck in solving your Windows issues. It is okay for end-user apps like running a brow

Re: Can't Install on Windows 8.1

2013-12-25 Thread Mike Dewhirst
On 26/12/2013 3:20am, Malik Rumi wrote: Ok, everything went smoothly and beautifully as promised. I got successful install messages for pip, distribute, virtualenv and django. So first, thank you both very much. However, I seem to be stuck again. I am not sure how to get from my new virtualenv t

What to learn first?

2013-12-25 Thread sahil13082
Hi, I wanted to ask that what should I learn first = wxPython or Django?(Being a beginner in python) -- 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-use

Re: Can't Install on Windows 8.1

2013-12-25 Thread Felipe Bessa Coelho
2013/12/25 Malik Rumi > Ok, everything went smoothly and beautifully as promised. I got successful > install messages for pip, distribute, virtualenv and django. So first, > thank you both very much. > > However, I seem to be stuck again. I am not sure how to get from my new > virtualenv to djang

Re: What to learn first?

2013-12-25 Thread Tim Chase
On 2013-12-25 11:34, sahil13...@iiitd.ac.in wrote: > I wanted to ask that what should I learn first = wxPython or > Django?(Being a beginner in python) What do you want to develop: desktop applications or web applications? Django is predominantly for web applications, while wx/qt/tk is primarily

Re: What to learn first?

2013-12-25 Thread Mark Moss
Since you are a newbee, just learn the basics of python first. And then jump to Django. At that point, learn any new python stuff as needed. - Mark *Instant Django Hosting . No setup needed. Just start using!* -- You received

Re: Need Direction for Web App

2013-12-25 Thread Doug Ballance
I was waiting on Christmas dinner, and had an hour to kill so I threw together a quick, incomplete skeleton app. Maybe it can be of use to get you started on the django side. It relies on the django-macaddress package, but is otherwise standalone. It's very basic - the less there is of it,