Re: where I can find good django video tutorial?

2010-04-21 Thread Thomas Schreiber
Also there are the archives from the conferences. There is more to wade through to find introductory material, but the talks are excellent nonetheless: http://djangocon.blip.tv/posts?view=archive&nsfw=dc http://pycon.blip.tv/posts?view=archive&nsfw=dc Thomas On Tue, Apr 20, 2010 at 13:41, Adnan S

Re: Django 1.2.1 install in Ubuntu 10.04 via Synaptic?

2010-06-01 Thread Thomas Schreiber
here is a getting started (good practices) guide to configuring a django production server. A little old now, but the fundamentals still apply. http://lethain.com/entry/2009/feb/13/the-django-and-ubuntu-intrepid-almanac/ On Tue, Jun 1, 2010 at 12:09, Patrice wrote: > On May 31, 5:35 pm, AD wrote

Re: Automatically assume "models." prefix in models.py

2010-11-15 Thread Thomas Schreiber
You could configure your text editor to insert a starting model class. class Modelname(models.Model): """Modelname description""" name = models.CharField(max_length=256) def __unicode__(self): return u"%s" % (self.name,) On Mon, Nov 15, 2010 at 09:57, James wrote: > On Mon,

Re: django tagging app choices

2010-11-15 Thread Thomas Schreiber
check the grids on django packages: http://djangopackages.com/grids/g/tagging/ On Mon, Nov 15, 2010 at 22:22, gyanguru wrote: > Hi all, > > I am looking for django tag project. I have discovered 2 "django > tagging" and "django tagit". > Does any one has a benchmark regarding this? > or > Any adv

Re: Newbie: can't login as user via standard admin login page

2010-11-17 Thread Thomas Schreiber
Are you sure the user has been marked as is_staff or is_superuser? http://docs.djangoproject.com/en/dev/topics/auth/#django.contrib.auth.models.User.is_staff On Wed, Nov 17, 2010 at 18:26, bingbang wrote: > Dear all, >             Started learning Django 3 days ago. Great tutorials. Just > made a

Re: Newbie Django Mac OS X suggestions.

2010-01-30 Thread Thomas Schreiber
I am extremely satisfied with Homebrew for OSX packet management: http://github.com/mxcl/homebrew Much cleaner to customize and get right than macports, fink, or manual building. New recipes get added all the time, and most everything I've needed is already there. With home brew I never touch any

Re: Applications disapearing from admin at random

2010-02-02 Thread Thomas Schreiber
Missing applications in the admin is the sign of an error in an admin.py I'd double check there first. -Tom On Tue, Feb 2, 2010 at 00:59, CreativeConvergence wrote: > Hi, > I have a django-mingus blog I modified a bit and it's running > perfectly under django integrated development web server.

django-registration

2008-07-11 Thread thomas schreiber
Is there a reason emails aren't being sent when running this app on localhost? Is there more that needs to be done to get the email sending part working other then what is included with django- registration? I'll come back to it later today. Thanks, Tom --~--~-~--~~~-