Re: choice model with objects.values_list options

2009-12-20 Thread Mark Schuuring
ed 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+unsubscr...@googlegroups.com. > For more options, visi

Re: {{ form.as_table }} not displaying in template

2009-12-13 Thread Mark Schuuring
Oh and I am not familiar with Ajax I am sorry because I've been told that's a way to handle it... Regards 2009/12/13 Mark Schuuring : > Hey guys thanks for your respond.  First of all i read the tutorial > and the form works in /search with the template and the view. For now

Re: {{ form.as_table }} not displaying in template

2009-12-13 Thread Mark Schuuring
ion? So far in /blogs/blogs.html >> >> >>         >>             {{ form.as_table }} >> >>                 >>                   >>                 >>                     >>                 >>             >>        

Re: Queryset filter on foreign key

2009-12-10 Thread Mark Schuuring
split them up into two columns depending > on the blog id? In which case, you could do it like this: > > blogs_one = Post.objects.filter(author=user, blog__id=1) > blogs_two = Post.objects.filter(author=user, blog__id=2) > > and then iterate through blogs_one and blogs_two