Re: Redirect home page

2009-10-12 Thread ashbii
I second Graeme's suggestion. It should make your life easier regarding translations. On Oct 11, 1:54 pm, Graeme Glass wrote: > On Oct 11, 12:24 am, Caisys wrote: > > > Hi, > > I would like visitors to my site homepagewww.example.comtobe > > redirected towww.example.com/en/inorder to allow for

Re: Year/month archive help

2009-10-09 Thread ashbii
Hello, Check out Django's built-in "generic" views: http://docs.djangoproject.com/en/dev/ref/generic-views/ It sounds like this solution might work for you if you just want to show an archive of your Posts. With this, you don't have to write any views, you only have to configure the urls and tem

Re: page not updating right away

2008-10-22 Thread ashbii
Thanks Rock, that was it. I had to change my TIME_ZONE setting in my project's settings.py. On Oct 18, 10:11 am, Rock <[EMAIL PROTECTED]> wrote: > A very common problem is that the timezone or system clock is off. > Most Blog implementations allow you to create a blog entry "in the > future" so

page not updating right away

2008-10-17 Thread ashbii
I am new to Django, but love it so far. I went through a tutorial and created a basic blog app. I'm using Django's admin interface to add new blog posts -- I have a blog "Post" model. My problem is that whenever I enter and save a new blog post via admin, its not showing up on the web page (tem