Re: Django table with checkboxes

2011-08-01 Thread jocke khazad
Hi Stanislav, I would sugest to create your own form object instead of creating input tags directly in your template. Read this page which also explains how to validate your form on the serverside: https://docs.djangoproject.com/en/dev/topics/forms/ Use a boolean field to generate a checkbox.

Re: Web development newbie

2011-07-23 Thread jocke khazad
HI, To have some knowlege of python is of course helpful but I think you can learn to write django applications quite fast starting with Djangos own tutorial since you have programming knowlege form another language. https://docs.djangoproject.com/en/dev/intro/tutorial01/ Good luck! On Sat, Jul

Re: urls

2011-07-14 Thread jocke khazad
http://127.0.0.1:8000/ is the same as / . To hit the following url: url(r'^$', 'person.views.home', name='home') use: HttpResponseRedirect('/') /Joakim On Thu, Jul 14, 2011 at 10:49 AM, Massimiliano della Rovere < massimiliano.dellarov...@gmail.com> wrote: > I think your case is #2 in > http