admin not playing nicely with sqlite

2010-04-25 Thread Sheena
I've been experiencing some strange problems with my admin site. I defined a few simple models and got Django to talk to an sqlite db sucessfully, I have no problem adding and removing table entries through the shell. I then activated the admin site and added my models. I can manage users and all t

DateField issues

2010-06-16 Thread Sheena
I've defined a number of models, one of which I've called MemberProfile that looks like this class MemberProfile(models.Model): postal_addr1=models.CharField(max_length=50, verbose_name="postal address line 1") postal_addr2=models.CharField(max_length=50, verbose_name="postal address line

Re: DateField issues

2010-06-16 Thread Sheena
s the DateField not get along with standard date objects? What format should stuff be in for populating DateFields? On Jun 17, 7:24 am, Alexander Jeliuc wrote: > read about autofill_now=True and autofill=True > > On Thu, Jun 17, 2010 at 8:14 AM, Sheena wrote: > > I've defined a

Rich email with attachments

2010-10-14 Thread Sheena
Hi all I'm making a site in which users have access to a rich text editor implemented with tinyMCE. What I want to do with the result is turn it into an email and send it off. I want to include a non-standard button and I was wondering if anyone can let me know how this can be achieved. The butto

Re: Rich email with attachments

2010-10-15 Thread Sheena
Thanks for the help, don't have it sorted yet but I'm well on my way -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+

Admin issues

2010-04-09 Thread Sheena
Hey hey. I'm a little new to Django so I've been following through the Django Book v2 and I'm having trouble adding my models to the admin site. I'm pretty sure I've followed instructions correctly, I've also tried following some random advice I found to no avail. Any help would be greatly apprecia

Re: Admin issues

2010-04-09 Thread Sheena
I uncommented 'django.contrib.sessions' to no avail, and everything else is correct. I'm not getting any error messages at all, I'm just not given the option to do anything with my tables from the admin site. I've gone through three different tutorials on it and they all say the same thing so it d

Re: Admin issues

2010-04-12 Thread Sheena
Still no luck... I've run syncdb and I can talk to my db through the interpreter easily so I don't think there's a problem with that. When i log in i get add and change options for Groups, Users, Comments and Sites but not for anything relating to my application (as created in chapter 5 of the Djan