Re: [Tutor] A Django Beginner View Question

2010-07-29 Thread Evert Rol
Consider using the django-users Google group for typical Django questions (unless you figure they're really about Python). Will likely get you better or more answers. Anyway: > Hi > > I am building my first Django site which has a lot of effectively 'static' > pages where I just want to make t

[Tutor] A Django Beginner View Question

2010-07-28 Thread Alasdair Macmillan
Hi I am building my first Django site which has a lot of effectively 'static' pages where I just want to make the meta data and text editable. The model is models.py class About(models.Model): page_title = models.CharField(max_length=900, help_text='Text at top of browser window') met