Re: New tutorial added to Django by Example

2012-10-21 Thread go scholarship
Hi, thanks for reply, actually, i try to built a reminder application, a person who logged in this apps, automatically set the user it self in ordered_by field, without needing to set ordered_by field manually. class Reminder(models.Model): domain_name = models.CharField(max_length=40)

Re: New tutorial added to Django by Example

2012-10-17 Thread Stephen Anto
Could you give in detail, what issue you have faced? On Tue, Oct 16, 2012 at 9:55 PM, go scholarship < the.scholarship...@gmail.com> wrote: > hi, im using django 1.4 and when i follow you tutorial > http://lightbird.net/dbe/todo_list.html associating users with tasks did > not work well > > user

Re: New tutorial added to Django by Example

2012-10-16 Thread Nikolas Stevenson-Molnar
Could you please provide further details about what didn't work or what errors you encountered? Thanks, _Nik On 10/16/2012 9:25 AM, go scholarship wrote: > hi, im using django 1.4 and when i follow you tutorial > http://lightbird.net/dbe/todo_list.html associating users with tasks > did not work

Re: New tutorial added to Django by Example

2012-10-16 Thread go scholarship
hi, im using django 1.4 and when i follow you tutorial http://lightbird.net/dbe/todo_list.html associating users with tasks did not work well user = models.ForeignKey(User, blank=True, null=True) for item in Item.objects.filter(created=obj): if not item.user: item.user = request.user item.save()

Re: New tutorial added to Django by Example

2010-08-05 Thread Nikhil Somaru
Ah, thanks On Tue, Aug 3, 2010 at 8:40 PM, Rainy wrote: > > > On Aug 3, 2:25 am, Nikhil Somaru wrote: > > How to set up a virtual python/django installation > > > > There is already a tutorial for this here: > > > http://codytaylor.org/2010/07/django-on-dreamhost-virtual-python-install.html > >

Re: New tutorial added to Django by Example

2010-08-03 Thread Rainy
On Aug 3, 2:25 am, Nikhil Somaru wrote: > How to set up a virtual python/django installation > There is already a tutorial for this here: http://codytaylor.org/2010/07/django-on-dreamhost-virtual-python-install.html -- You received this message because you are subscribed to the Google Groups

Re: New tutorial added to Django by Example

2010-08-03 Thread Rainy
On Aug 3, 3:27 am, Mario wrote: > Thank you for sharing the application. I would like to make the start > day of the week Sunday instead of Monday. > > _Mario All you have to do use calendar module's method to set starting day of week: calendar.setfirstweekday(calendar.SUNDAY) (and update tem

Re: New tutorial added to Django by Example

2010-08-03 Thread Mario
Thank you for sharing the application. I would like to make the start day of the week Sunday instead of Monday. _Mario On Aug 3, 12:14 am, Rainy wrote: > I've added a new tutorial: Calendar App to > my Django by Example site.  As always, feedback is appreciated. > > What would be a good tutorial

Re: New tutorial added to Django by Example

2010-08-02 Thread Nikhil Somaru
How to set up a virtual python/django installation On Tue, Aug 3, 2010 at 9:44 AM, Rainy wrote: > I've added a new tutorial: Calendar App to > my Django by Example site. As always, feedback is appreciated. > > What would be a good tutorial to do next? > >http://LightBird.net/dbe/ > > -ak >

New tutorial added to Django by Example

2010-08-02 Thread Rainy
I've added a new tutorial: Calendar App to my Django by Example site. As always, feedback is appreciated. What would be a good tutorial to do next? http://LightBird.net/dbe/ -ak -- You received this message because you are subscribed to the Google Groups "Django users" group. To post t

Re: New tutorial added to Django by Example

2010-07-20 Thread Rainy
On Jul 20, 12:09 pm, Mitch wrote: > For SEO, your title tags matter greatly, as do the tags, page > content and link text into and within the pages, probably in that > order. If I were you, I'd make sure each page's and tag > had "Django tutorial" in it. For example, on the "Todo List App" pa

Re: New tutorial added to Django by Example

2010-07-20 Thread Mitch
For SEO, your title tags matter greatly, as do the tags, page content and link text into and within the pages, probably in that order. If I were you, I'd make sure each page's and tag had "Django tutorial" in it. For example, on the "Todo List App" page I'd change the title to something like "Dj

Re: New tutorial added to Django by Example

2010-07-20 Thread Rainy
On Jul 19, 2:33 pm, Venkatraman S wrote: > On Mon, Jul 19, 2010 at 11:46 PM, Rainy wrote: > > > >    http://LightBird.net/dbe/ > > > > You rock ;) > > > A small nit : make the site more search-friendly. Probably, add a few > > > keywords/description etc? > > > Thanks! Do you mean, to every page

Re: New tutorial added to Django by Example

2010-07-19 Thread Venkatraman S
On Mon, Jul 19, 2010 at 11:46 PM, Rainy wrote: > > >http://LightBird.net/dbe/ > > > > You rock ;) > > A small nit : make the site more search-friendly. Probably, add a few > > keywords/description etc? > > Thanks! Do you mean, to every page? That might > be a bit hard, I'm using Sphinx for si

Re: New tutorial added to Django by Example

2010-07-19 Thread Rainy
On Jul 19, 1:49 pm, Venkatraman S wrote: > On Mon, Jul 19, 2010 at 11:06 PM, Rainy wrote: > > I've added a new tutorial: A Simple Forum to my Django by Example > > site.  As always, feedback is appreciated. > > >    http://LightBird.net/dbe/ > > You rock ;) > A small nit : make the site more se

Re: New tutorial added to Django by Example

2010-07-19 Thread Venkatraman S
On Mon, Jul 19, 2010 at 11:06 PM, Rainy wrote: > I've added a new tutorial: A Simple Forum to my Django by Example > site. As always, feedback is appreciated. > >http://LightBird.net/dbe/ > You rock ;) A small nit : make the site more search-friendly. Probably, add a few keywords/descripti

New tutorial added to Django by Example

2010-07-19 Thread Rainy
I've added a new tutorial: A Simple Forum to my Django by Example site. As always, feedback is appreciated. http://LightBird.net/dbe/ -ak -- 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...@

New tutorial added to Django by Example

2010-07-12 Thread Rainy
I've added a new tutorial: A Photo Organizer and Sharing App to my Django by Example site. As always, feedback is appreciated. This tutorial illustrates the use of tags, ratings, albums, sharing, searching, filtering and sorting. http://LightBird.net/dbe/ -ak -- You received this messag

Re: New tutorial added to Django by Example

2010-07-11 Thread Rainy
On Jul 9, 9:41 pm, John M wrote: > WOW, this is very cool, you should see if you can add it to the main > django tutorial someway? Thanks! I don't think it will be added to main tutorial but I added the link to the list of tutorials on Django Wiki. -ak -- You received this message because you

Re: New tutorial added to Django by Example

2010-07-09 Thread John M
WOW, this is very cool, you should see if you can add it to the main django tutorial someway? J On Jul 6, 3:50 pm, Rainy wrote: > I've added a new tutorial: A simple Blog to my Django by Example site. > As > always, feedback is appreciated. > > This tutorial covers display of monthly archive, pa

Re: New tutorial added to Django by Example

2010-07-09 Thread Rainy
Thanks for great comments, Euan. See a few notes below.. On Jul 7, 6:20 am, "euan.godd...@googlemail.com" wrote: > Hi again, > > I've had a read over your blog tutorial and have the following > suggestions: > > 1) Make it PEP-8 (http://www.python.org/dev/peps/pep-0008/) compliant > - it's a lot e

Re: New tutorial added to Django by Example

2010-07-07 Thread euan.godd...@googlemail.com
Hi again, I've had a read over your blog tutorial and have the following suggestions: 1) Make it PEP-8 (http://www.python.org/dev/peps/pep-0008/) compliant - it's a lot easier to read. 2) Except only the error that might occur in the paginatior example. Bare excepts are BAD. 3) Maybe consider ena

Re: New tutorial added to Django by Example

2010-07-06 Thread Rainy
Oh! I forgot the URL: http://lightbird.net/dbe/ -- 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+unsubscr...@googlegro

New tutorial added to Django by Example

2010-07-06 Thread Rainy
I've added a new tutorial: A simple Blog to my Django by Example site. As always, feedback is appreciated. This tutorial covers display of monthly archive, pagination, a simple, basic comment system, notification when comments are posted and a flexible interface for deletion of spammy comments. H