Re: trouble getting django to work with fastcgi?

2007-09-27 Thread Mike Atlas
php/Django#500_errors_and_Incomplete_Header_in_logs On Sep 27, 3:55 pm, Mike Atlas <[EMAIL PROTECTED]> wrote: > Hello, > > I am trying to get my django app to work using FastCGI on my host, > ASmallOrange. Their guides are out of date for doing this correctly. > > I have established that fast

trouble getting django to work with fastcgi?

2007-09-27 Thread Mike Atlas
Hello, I am trying to get my django app to work using FastCGI on my host, ASmallOrange. Their guides are out of date for doing this correctly. I have established that fastcgi is working in the general case, as this test.fcgi file works from both the command line, and from the web browser

Re: Newbie with generic views

2007-08-30 Thread Mike Atlas
I'm on my way. Thanks...sometimes asking the right question is the best way to answer it for yourself :( competitor_list.html = {% extends "base.html" %} {% block content %} {% for object in object_list %} {{ object.fullname }} {% endfor %} {% endblock %}

Re: Newbie with generic views

2007-08-30 Thread Mike Atlas
Hmm... Looks like I need to access the object_list context... that seems to be the first step that I'm missing... I understand better somewhat already...although a link to any resources anyone might know of would be nice... Thanks. Mike On Aug 30, 2:59 pm, Mike Atlas <[EMAIL PROTEC

Newbie with generic views

2007-08-30 Thread Mike Atlas
Hi guys, I'm trying to make a generic view to see some data, and I'm having some trouble. I have some objects already in the database for the model I'm trying to generate this for. Here's my urls.py: #= from django.conf.urls.defaults import * from