Re: delete or update a model

2008-07-15 Thread titaniumlou
If you're talking about modifying your model definitions and then having those changes present in the backend database schema I don't believe you'll be able to do that with Django automatically but you can do it manually Start with the section titled "Making Changes to a Database Schema" on this

Re: URLS outside of the actual site but on the same domain

2008-07-11 Thread titaniumlou
Maybe you can post some of your config files or some more specifics so we can help out further. On Jul 11, 3:43 pm, "Administration" <[EMAIL PROTECTED]> wrote: > Thank you for all of your replies.  However none of it worked. > > Raven > > -Original Message- > From: django-users@googlegrou

Re: Template engine

2008-06-13 Thread titaniumlou
Is this white-space behavior the case with all template tags? Is it desirable for all template tags? Maybe only tags that are common to be at the top of a template file could have this enhancement to erase whitespace between them and the next real tag in the template? It seems to me that if cer

Re: urls.py and adding an OR to the regexp

2008-05-28 Thread titaniumlou
Couldn't you also use something along the lines of ^price[s]/ That way you are always matching at least price and will match the optional s on the end as well. Though I may have the syntax wrong. On May 28, 3:15 am, "Thierry Schork" <[EMAIL PROTECTED]> wrote: > > > It's simply an OR done into t

Production vs Development Environments

2008-05-03 Thread titaniumlou
A post from another thread got me wondering, how many people here have their development environments closely mimic their production ones? Or is it common to have a development, staging and production environments ? That way your development environment could be whatever is easiest for you to se