Re: form fields

2008-10-10 Thread Adrian-Bogdan Andreias
You can customize the form template and render each field separately or define the label in your model, using verbose_name parameter: class Game(Model): # ... time_days_W = CharField(max_length=128, verbose_name="time") 2008/10/10 Alfredo Alessandrini <[EMAIL PROTECTED]> > > Hi, > > I'v

multithreading in web request

2007-09-26 Thread Adrian-Bogdan Andreias
Hi, This is a rather python on web question then a django question. 1. Is it possible to create and use threads from django view code? 2. If yes, is there a server side specific setup needed? The problem that we're trying to solve is: On request the python code has to make multiple socket connec